본문 바로가기
git&github

github repositories 저장소에 있는 파일 강제 삭제

by 바나냥 2020. 6. 4.
git filter-branch --force --index-filter
git rm -r --cached --ignore-unmatch 삭제할파일명(.gitignore에 들어갈 문장)
--prune-empty --tag-name-filter cat -- --all //위 파일명이 들어간 모든 파일 제거인 듯..

echo public/photos >> .gitignore
git add .gitignore && git commit -m "ignore rule for 파일명"
git push -f origin master //fetch

 

 

git rm -r --cached 안 먹힐 때

댓글