我不希望将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")
答案 0 :(得分:3)
您以前可能已经提交了此文件。尝试删除它:
git rm --cached .DS_Store
答案 1 :(得分:3)
您的.DS_Store
已被提交,然后才被添加到.gitignore
中。您可以使用以下方法将其从存储库中删除:
git rm --cached .DS_Store
git commit -m '.DS_Store untracked'
--cached
选项只会从索引中删除文件,而不会删除文件本身。
完成此操作后,Git将不再跟踪该文件,并将其正确忽略。