본문 바로가기

Tool/Git

[Git] .DS_Store 삭제후 다시 commit

728x90
반응형
SMALL

 

 

 

 

 

  • local folder에서 .DS_Store 삭제 후 commit
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch -f
echo .DS_Store >> .gitignore
git add .gitignore
git commit -m ".DS_Store is banished"
git push origin main

 

 

 

 

 

 

 

728x90
반응형
LIST