코딩공부/Java Spring

[sts 설정] git과 연동하기 위한 .gitignore 설정 하기

integerJI 2020. 5. 16. 18:55

[sts] git과 연동하기 위한 .gitignore 설정 하기

 

sts와 git을 연결하기위한 준비 및 올리면 안될 파일을 필터링 하기 위한 .gitignore 설정


 - 프로젝트 시작 전 개발환경 세팅

sts 3.9.11 : https://integer-ji.tistory.com/52

oracle 11g : https://integer-ji.tistory.com/55

java 1.8 : https://integer-ji.tistory.com/49

Tomcat 8.5.50 : https://integer-ji.tistory.com/182


git 저장소 만들기

 

 

git 저장소를 만들때에는 Add .gitignore:java라고 꼭 명시해줘야 합니다.

 

이걸 체크 안해주면 git을 연결할때 master가 안생깁니다.

 

 

.gitignore 설정하기

 

첫 git을 생성하면 .gitignore 파일이 생성됩니다.

 

https://gitignore.io/

 

해당 사이트에서 Eclipse를 검색하여 

 

 

모두 복사하여 git에 있는 .gitignore 파일에 붙여준다.

 

또한 DB 정보를 저장하는 "root-context.xml" 를 추가해 줍니다.

 

 

여기서 붙여넣을때 조심할점

 

맨아래에 표시되어있는

### Eclipse Patch ###
# Eclipse Core
.project

# JDT-specific (Eclipse Java Development Tools)
.classpath

# Annotation Processing
.apt_generated

.sts4-cache/

# End of https://www.gitignore.io/api/eclipse

 

는 지워주도록 합니다.

 

이안님의 블로그를 보면 https://smujihoon.tistory.com/127

 

설정이 꼬이기 쉬운 부분이라 처음 등록할 때

 

이게 없으면 프로젝트 자체를 못찾을 수 있기 때문에 일단 지워줘야고 합니다.