Git忽略.gitignore文件并说.DS_Store文件被修改

问题描述 投票:0回答:2

我不希望我的MacBook的.DS_Store文件被提交到我的Git存储库。

不幸的是,我的.gitignore甚至.gitignore_global似乎完全被忽略了。

任何想法可能是什么原因?

 ujjain:~/Dropbox/workspace| (HEAD) [+1] | feature/Jenkinsfile [+1]
$ cat .gitignore
...

# Mac OS Test
.DS_Store
 ujjain:~/Dropbox/workspace| (HEAD) [+1] | feature/Jenkinsfile [+1]
$ git status
On branch feature/Jenkinsfile
Your branch is up to date with 'origin/feature/Jenkinsfile'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

  modified:   .DS_Store

no changes added to commit (use "git add" and/or "git commit -a")
git gitignore
2个回答
3
投票

您可能先前已提交此文件。试试这个删除它:

git rm --cached .DS_Store

3
投票

你的.DS_Store在加入.gitignore之前一直在承诺。您可以使用以下命令将其从回购中删除:

git rm --cached .DS_Store
git commit -m '.DS_Store untracked'

--cached选项将仅从索引中删除文件,但不会删除文件本身。

一旦完成,Git将不再跟踪该文件,并将被正确忽略。

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