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
|
|||||||||||||||||||||
|
|
Combining benzado and webmat's answers, updating with
|
|||
|
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. |
||||
|
|
|
I had to change git-rm to git rm in the above to get it to work: find . -depth -name '.DS_Store' -exec git rm --cached '{}' \; -print |
|||
|
|
|
delete them using |
||||
|
|
|
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). |
||||
|
|
|
The following worked best for me. Handled unmatched files, and files with local modifications. For reference, this was on a Mac 10.7 system running git 1.7.4.4. Find and remove:
I also globally ignore .DS_Store across all repositories by setting a global core.excludesfile. First, create the file (if one doesn't already exist):
Then add the following line and save:
Now configure git to respect the file globally:
|
|||
|
|
|
There are a few solutions to resolve this problem. To avoid creating .DS_Store files, do not to use the OS X Finder to view folders. An alternative way to view folders is to use UNIX command line. To remove the .DS_Store files a third-party product called DS_Store Terminator can be used. To delete the .DS_Store files from the entire system a UNIX shell command can be used. Launch Terminal from Applications:Utilities At the UNIX shell prompt enter the following UNIX command: sudo find / -name ".DS_Store" -depth -exec rm {} \; When prompted for a password enter the Mac OS X Administrator password. This command is to find and remove all occurrences of .DS_Store starting from the root (/) of the file system through the entire machine. To configure this command to run as a scheduled task follow the steps below: Launch Terminal from Applications:Utilities At the UNIX shell prompt enter the following UNIX command: sudo crontab -e When prompted for a password enter the Mac OS X Administrator password. Once in the vi editor press the letter I on your keyboard once and enter the following: 15 1 * * * root find / -name ".DS_Store" -depth -exec rm {} \; This is called crontab entry, which has the following format: Minute Hour DayOfMonth Month DayOfWeek User Command. The crontab entry means that the command will be executed by the system automatically at 1:15 AM everyday by the account called root. The command starts from find all the way to . If the system is not running this command will not get executed. To save the entry press the Esc key once, then simultaneously press Shift + z+ z. Note: Information in Step 4 is for the vi editor only. |
|||
|
|
|
For some reason none of above worked on my mac. My solution is from terminal run
Then
|
|||
|
|
|
This will work:
|
|||||
|
|
|||
|
|