Last active
          September 18, 2025 18:40 
        
      - 
      
- 
        Save vybstat/1680bef4715bfbcb0268 to your computer and use it in GitHub Desktop. 
Revisions
- 
        vybstat revised this gist Sep 25, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch touch .gitignore echo .DS_Store > .gitignore # push changes to GitHub git add .gitignore git commit -m '.DS_Store removed' git push origin master 
- 
        vybstat created this gist Sep 25, 2015 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # remove .DS_Store file from GitHub that MAC OS X creates # find and remove .DS_Store find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch # create .gitignore file, if needed touch .gitignore echo .DS_Store > .gitignore # commit changes to GitHub git add .gitignore git commit -m '.DS_Store removed' git push origin master