Notice
Recent Posts
Recent Comments
송민준의 개발노트
gitignore 본문
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 클릭
gitignore.io
Create useful .gitignore files for your project
www.gitignore.io
- 접속후 키워드 입력 후 생성
---------번외
'웹 > 환경설정(setting)' 카테고리의 다른 글
Git 커밋 작성자 수정 (0) | 2021.02.23 |
---|---|
intellij 정적리소스 바로 반영되게 하는 방법(eclipse - without publishing) (0) | 2020.11.28 |
Spring 에러(lambda expressions are not supported in -source 1.6) (0) | 2020.02.04 |
로그 디버깅 기록 라이브러리 (0) | 2019.12.17 |
Mybatis (0) | 2019.12.16 |