ModusCreateOrg / extjs-in-action-examples

Ext JS in Action SE Examples
GNU General Public License v3.0
20 stars 29 forks source link

Remove .DS_Store files #1

Closed johnkary closed 10 years ago

johnkary commented 10 years ago

You can prevent these files from being added to your repository by creating a system-wide ~/.gitignore file, adding .DS_Store to it then telling git about it:

git config --global core.excludesfile ~/.gitignore
dmackerman commented 10 years ago

Helpful tip! Thanks @johnkary.