协慌网

登录 贡献 社区

如何从 Git 存储库中删除. DS_Store 文件?

如何从 Git 存储库中删除那些烦人的 Mac OS X .DS_Store文件?

答案

从存储库中删除现有文件:

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

添加行

.DS_Store

到文件.gitignore ,可以在您的存储库的顶层找到(或者如果它已经存在则创建)。您可以使用顶级目录中的此命令轻松完成此操作

echo .DS_Store >> .gitignore

然后

git add .gitignore
git commit -m '.DS_Store banished!'

结合 benzado 和 webmat 的答案,使用git rm更新,不会发现不在 repo 中的文件失败,并且可以为任何用户进行一般性粘贴:

# remove any existing files from the repo, skipping over ones not in repo
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch
# specify a global exclusion list
git config --global core.excludesfile ~/.gitignore
# adding .DS_Store to that list
echo .DS_Store >> ~/.gitignore

解决此问题的最佳解决方案是全局忽略系统上所有 git 存储库中的这些文件。这可以通过创建全局 gitignore 文件来完成,例如:

vi ~/.gitignore_global

添加规则以忽略如下文件:

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

现在,将此文件添加到您的全局 git 配置:

git config --global core.excludesfile ~/.gitignore_global

编辑:

删除了图标,因为它们可能需要作为应用程序资产提交。