시그마 삽질==six 시그마

이미 tracking된 원격 저장소에 .gitignore 적용 본문

프로그래밍/GIT

이미 tracking된 원격 저장소에 .gitignore 적용

Ethan Matthew Hunt 2020. 3. 6. 00:24

.gitignore에 추가하지 못하고 push한 경우가 있다. 

 

본 코드 입력시 원격저장소에 이미 push 된  gitignore 파일들이 사라진다.

 

git rm -r --cached .
git add .
git commit -m ".gitignore is now working"
git push

 

 

출처 :https://stackoverflow.com/questions/19663093/apply-gitignore-on-an-existing-repository-already-tracking-large-number-of-file

'프로그래밍 > GIT' 카테고리의 다른 글

git repository 복사하기  (0) 2020.08.12
git 히스토리 초기화  (0) 2020.08.10
git branch/checkout  (0) 2020.08.10
현재 브랜치를 마스터로 만들기  (0) 2020.03.06
Git Reset/ Revert  (0) 2020.03.06
Comments