vote up 6 vote down star
6

How can I remove those annoying Mac OS X .DS_Store files from a Git repository?

flag

5 Answers

vote up 12 vote down check

Remove existing files from the repository:

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

Add the line

.DS_Store

to the file .gitignore, which can be found at the top level of your repository (or created if it isn't there already). Then

git add .gitignore
git commit -m ".DS_Store banished!"
link|flag
You could also use the exec option to find find . -name .DS_Store -exec git-rm {} \; It would be one less command. – Milhous Sep 21 '08 at 1:54
1  
It's really trivial, but using -exec will launch git-rm once for every .DS_Store file, while xargs will put all the paths on one command line. Mostly I prefer xargs because I don't have to worry about escaping a lot of special characters. – benzado Sep 21 '08 at 7:13
vote up 5 vote down

delete them using git-rm, and then add .DS_Store to .gitignore to stop them getting added again. You can also use blueharvest to stop them getting created all together

link|flag
BlueHarvest: zeroonetwenty.com/blueharvest – Pat Notz Sep 20 '08 at 9:57
vote up 5 vote down

In some situations you may also want to ignore some files globally. For me, .DS_Store is one of them. Here's how:

git config --global core.excludesfile = /Users/mat/.gitignore

(Or any file of your choice)

Then edit the file just like a repo's .gitignore. Note that I think you have to use an absolute path.

link|flag
vote up 0 vote down

This will work:

find . -name *.DS_Store -type f -exec git-rm {} \;
link|flag
The asterisk should not be in there. – Aristotle Pagaltzis Sep 20 '08 at 17:01
vote up 0 vote down

I found that the following line from snipplr does best on wiping all .DS_Store, including one that has local modifications.

find . -depth -name '.DS_Store' -exec git-rm --cached '{}' \; -print

--cached option, keeps your local .DS_Store since it gonna be reproduced anyway.

And just like mentioned all above, add .DS_Store to .gitignore file on the root of your project. Then it will be no longer in your sight (of repos).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.