git中避免提交.DS_Store文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git中避免提交.DS_Store文件相关的知识,希望对你有一定的参考价值。

1. 先删除原有的.DS_Store:

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

命令解释:在当前文件夹以及当前文件夹的子文件夹中找到所有的.DS_Store文件,并将找到的文件通过管道传给xargs来处理。注意几个参数的理解: 
-print0:在find后不添加换行符(-print默认会添加换行符) 
-0:将管道送来的字符串当做普通的字符串,不做任何转义处理。

2. 建立.gitignore文件

vi .gitignore。然后添加.DS_Store作为忽略:

.DS_Store

3. 提交到git

git add .gitignore
git commit -m ‘delete .DS_Store‘

原链接:http://blog.csdn.net/nunchakushuang/article/details/50511765#

以上是关于git中避免提交.DS_Store文件的主要内容,如果未能解决你的问题,请参考以下文章

如何删除mac中的.DS_Store和git中的.DS_Store

关于GitHub上传中忽略.DS_Store的方法说明

使用 .gitignore 忽略 Git 仓库中的文件

Git.DS_Store 是什么文件

如何创建.gitignore文件,忽略git不必要提交的文件

如何在引入 Xcode 源代码控制时避免 Ds_Store 和 pod?