123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- //this will affect all the git repos
- git config --global core.excludesfile ~/.gitignore
- //update files since .ignore won't if already tracked
- git rm --cached <file>
- *.com
- *.class
- *.dll
- *.exe
- *.o
- *.so
- *.7z
- *.dmg
- *.gz
- *.iso
- *.jar
- *.rar
- *.tar
- *.zip
- *.log
- *.sql
- *.sqlite
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- .cache
- .project
- .settings
- .tmproj
- *.esproj
- nbproject
- *.diff
- *.err
- *.orig
- *.rej
- *.swn
- *.swo
- *.swp
- *.vi
- *~
- *.sass-cache
- *.grunt
- *.tmp
- _notes
- dwsync.xml
- *.komodoproject
- .komodotools
- node_modules
- bower_components
- .hg
- .svn
- .CVS
- intermediate
- publish
- .idea
- .graphics
- _test
- _archive
- uploads
- tmp
- .VimballRecord
- .netrwhist
- bundle.*
- _demo
|