위토즈 - 개발자프로그램판매공간

정보공유

[github] git add 취소하기

 

특정파일만 add 취소처리하고 싶을경우.

 

git reset ./a.txt

 

git tracking 에서 아예 제외처리 하기.

 

git rm -r --cached bbs  # 폴더제외
git rm --cached test.html  # 파일제외
git rm -r --cached . # 모두제외(초기화)