Definitively delete the tracking of .DS_Store files in GIT
本问题已经有最佳答案,请猛点这里访问。
我有一个git repo,其中
我知道在被跟踪之前,我可以简单地将
您需要使用
1 2 | git rm --cached"*.DS_Store" git commit -m"remove all .DS_Store" |
号
您需要使用
1 | find -name .DS_Store -print0 | xargs -0 git rm |
我有一个git repo,其中
我知道在被跟踪之前,我可以简单地将
您需要使用
1 2 | git rm --cached"*.DS_Store" git commit -m"remove all .DS_Store" |
号
您需要使用
1 | find -name .DS_Store -print0 | xargs -0 git rm |