Mac’s 使用Git,解决.DS_Store冲突问题

在 Mac 的使用中,系统会自动在每个目录中生成一个隐藏的 .DS_Store 文件。

在最近的一次使用 git pull 的时候,因为该文件而产生冲突导致无法拉取。

虽然删除可以解决问题,但是这样每次去单个删除也是一件麻烦的事情。

如果你的项目中还没有自动生成的 .DS_Store 文件,那么直接将 .DS_Store 加入到 .gitignore 文件就可以了。 没有这个文件的话,新建一个 :mkdir .gitignore

2.echo .DS_Store >> ~/.gitignore

如果你的项目中已经存在 .DS_Store 文件,那就需要先从项目中将其删除,再将它加入到 .gitignore。

删除项目中的所有.DS_Store

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

更新项目

git add .
git commit -m 'Delete all .DS_Store'

转自: Git使用中 .DS_Store 冲突问题 · 大专栏https://www.dazhuanlan.com/wffger/topics/1177674

猜你喜欢

转载自blog.csdn.net/qq_42405688/article/details/121179282