0
点赞
收藏
分享

微信扫一扫

git代码提交删除.DS_Store

Villagers 2022-02-02 阅读 108
git

参考Mac取消提交.DS_Store

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
echo .DS_Store >> ~/.gitignore
git add --all
git commit -m '.DS_Store banished!'
git push origin master
举报

相关推荐

0 条评论