刪除 git 陰魂不散的 DS.Store
26 Feb 2022git
於terminal輸入:
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
輸入以下指令將.DS_Store加入.gitignore
echo .DS_Store >> .gitignore
commit .gitignore file
git add .gitignore
git commit -m '.DS_Store banished!'