[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 파일이 생성됩니다.
해당 사이트에서 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
설정이 꼬이기 쉬운 부분이라 처음 등록할 때
이게 없으면 프로젝트 자체를 못찾을 수 있기 때문에 일단 지워줘야고 합니다.
'코딩공부 > Java Spring' 카테고리의 다른 글
[spring 기초] Oracle 11g 연동, pom.xml 의존성 추가 (0) | 2020.05.17 |
---|---|
[spring 기초] MVC 패턴, package구조 (0) | 2020.05.16 |
[sts 설정] git 연동, master가 없을때, git push, git commit, git pull (0) | 2020.05.16 |
[sts 설정] tomcat 8.5 연동, sts 한글 설정하기 (0) | 2020.05.15 |
[sts 설정] pom.xml 설정, java 1.8 버전 맞추기 (0) | 2020.05.15 |