* git repository에 등록 전 생성
* A sample of eclipse maven project
$ cat .gitignore
.classpath
.project
.settings
.springBeans
target/
* A sample of eclipse gradle project
$ cat .gitignore
.classpath
.project
.settings
.gradle
bin/
target/
build/
logs/
* defualt by Spring STS
target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
'IDE & Build > Git' 카테고리의 다른 글
git - eclipse commit comment template (0) | 2016.01.03 |
---|---|
git - eclipse에서 branch 생성하기 (0) | 2015.08.11 |
git - eclipse에서 현재 프로젝트를 git으로 공유 (0) | 2015.04.26 |