[Git] 원격 저장소에 올라간 .DS_Store 파일 제거
.DS_Store를 제거하는 방법에 대해서는 이전에도 글을 올린 적 있었는데, 조금 다른 방법을 소개하려고 한다.
.gitignore에 .DS_Store 등록
.gitignore
.DS_Store
캐시 삭제 후 push
.DS_Store가 한번이라도 올라갔다면, git이 이미 추적중이기 때문에 캐시를 삭제해야한다.
git rm --cached .DS_Store
git add .
git commit -m "Remove .DS_Store"
git push origin master
Ref.
💛 개인 공부 기록용 블로그입니다. 👻