How can I remove those annoying Mac OS X .DS_Store files from a Git repository?
|
|
Remove existing files from the repository:
Add the line
to the file
|
||||||
|
|
|
delete them using |
|||
|
|
|
In some situations you may also want to ignore some files globally. For me, .DS_Store is one of them. Here's how:
(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. |
||
|
|
|
|
This will work:
|
||
|
|
|
I found that the following line from snipplr does best on wiping all .DS_Store, including one that has local modifications.
--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). |
|||
|
|
