송민준의 개발노트

gitignore 본문

웹/환경설정(setting)

gitignore

송민준 2020. 1. 31. 17:18

1. ".gitignore"?

  Project에 원하지 않은 파일들을 Git에서 제외시킬수 있는 설정 파일

 

2. 최상위 Directory에 존재해야 함.

 

3. 깃헙 접속 -> 로그인

 

4. 저장소 이동 - > Create new file

 

5. .gitignore 입력

 

6. choose .gitignore 버튼에서 Java 선택

 

# 확장자 html인 파일

*.html

 

# home.html 파일 제외

 !home.html

 

7. 전부 작성 후 Commit new file 클릭

 

* https://www.gitignore.io 

 

gitignore.io

Create useful .gitignore files for your project

www.gitignore.io

- 접속후 키워드 입력 후 생성

 

 

---------번외