.gitignore每个文件夹和子文件夹中的所有.DS_Store文件

问题描述 投票:432回答:9

我已将.DS_Store添加到.gitignore文件中,但似乎它只忽略根目录中的.DS_Store,而不是每个文件夹和子文件夹。

我该如何解决?

gitignore
9个回答
560
投票

我认为你遇到的问题是,在一些早期的提交中,你不小心将.DS_Store文件添加到了存储库。当然,一旦在您的存储库中跟踪文件,即使它与适用的.gitignore文件中的条目匹配,它也将继续被跟踪。

您必须手动删除已添加到存储库的.DS_Store文件。你可以使用git rm --cached .DS_Store。删除后,git应该忽略它。您应该只需要根.gitignore文件中的以下行:.DS_Store。不要忘记这个时期!

git rm --cached .DS_Store只从当前目录中删除.DS_Store。您可以使用find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch从存储库中删除所有.DS_Stores

感觉提示:因为您可能永远不想包含.DS_Store文件,所以制定全局规则。首先,在某处创建一个全局.gitignore文件,例如echo .DS_Store >> ~/.gitignore_global。现在告诉git将它用于所有存储库:git config --global core.excludesfile ~/.gitignore_global

这个页面帮我回答了你的问题:https://help.github.com/articles/ignoring-files


307
投票

将add**/.DS_Store添加到.gitignore作为子目录


如果.DS_Store已经承诺:

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

要在所有存储库中忽略它们:(有时它命名为._.DS_Store

echo ".DS_Store" >> ~/.gitignore_global
echo "._.DS_Store" >> ~/.gitignore_global
echo "**/.DS_Store" >> ~/.gitignore_global
echo "**/._.DS_Store" >> ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global

82
投票

您的.gitignore文件应如下所示:

# Ignore Mac DS_Store files
.DS_Store

只要不包含斜杠,它就会与所有目录中的文件名匹配。 (来自here


81
投票

如果.DS_Store从未添加到您的git存储库,只需将其添加到.gitignore文件即可。

如果没有,请创建一个名为的文件

.gitignore

在您的应用程序的根目录中,只需写入

**/.DS_Store

在里面。这永远不会允许.DS_Store文件潜入你的git。

但是,如果它已经存在,请在您的终端中写入:

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

然后提交并推送更改以从远程仓库中删除.DS_Store:

git commit -m "Remove .DS_Store from everywhere"

git push origin master

现在将.DS_Store添加到.gitignore文件中,然后再次提交并推送最后两段代码(git commit ...,git push ...)


22
投票

第1步,删除所有*.DS_store文件。一个人可以跑

git rm -f *.DS_Store

但请注意,如果你有拼写错误,rm -f可能会有点危险!第二步:添加

*.DS_Store
.DS_Store

到.gitignore。这对我有用!


11
投票

您还可以将--cached标志添加到auco的答案中,以维护本地.DS_store文件,正如Edward Newell在其原始答案中提到的那样。修改后的命令如下所示:find . -name .DS_Store -print0 | xargs -0 git rm --cached --ignore-unmatch ..cheers并谢谢!


9
投票

*.DS_Store添加到.gitignore文件中。这完全适合我


5
投票

步骤:1)使用此命令删除现有文件

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

步骤:2)在.gitignore文件中添加.DS_Store

步骤:3)在.gitignore中提交您的更改git add .gitignore git commit -m“removed .DS_Store”


0
投票
  1. $ git rm ./*.DS_Store - 从git中删除所有.DS_Store
  2. $ echo \.DS_Store >> .gitignore - 将来忽略.DS_Store

提交和推送

© www.soinside.com 2019 - 2024. All rights reserved.