[Github]올라간 파일/디렉토리 삭제하기
Contents
올라간 파일/디렉토리 삭제하기
.gitignore에 안 올릴 파일을 명시하고 올렸어야 했는데,
까먹고 그냥 올려버렸다.
-
로컬 디렉토리와 git 저장소에서 모두 삭제
1 2 3
$ git rm a.txt $ git commit -m "chore: delete a.txt" $ git push
-
git에서만 삭제 로컬 디렉토리에서는 유지해야 할 때
1 2 3
$ git rm --cached a.txt $ git commit -m "chore: delete a.txt in git" $ git push