- .gitignore 란?
git version 관리에서 제외할 파일을 설정할 수 있다.
일반적으로 컴파일된 소스에 경우 버전관리 하지 않는다.
- 작성방법
1 2 3 4 | filename -- filename 제외 filename* -- filename으로 시작하는 파일 제외 *filename -- filename로 끝나는 파일 제외 folder/ -- folder | cs |
- 적용이 안될 때
.gitignore에 작성한 내용이 필터가 안될 경우 cmd 창에서 아래와 같이 명령어를 실행한다.
1 2 | >> git rm -r --cached . >> git add . | cs |
'Programming > Git' 카테고리의 다른 글
git remote branch 일괄삭제 (0) | 2020.12.07 |
---|---|
[Git] merge 실수로 데이터 날라갔을때.. / git reflog (0) | 2019.03.14 |
[Git] 기존 프로젝트 repository에 올리기 (0) | 2017.01.10 |
[Git] checkout (0) | 2016.12.20 |
[git] git pull 에러 (0) | 2016.11.10 |