Created
January 6, 2017 18:10
-
-
Save kitsguru/a901e1347718c3f2eaba55954b31e4ae to your computer and use it in GitHub Desktop.
git global ignore x-platform
This 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 characters
| # gitignore_global | |
| # customized for Jeff Shields projects | |
| # ignore these files and folders | |
| # ignore anything beginning with ~ | |
| ~* | |
| # the grunt modules | |
| **/node_modules/ | |
| *.sublime-workspace | |
| **/bower_components/ | |
| *.old | |
| components/ | |
| inuitcss/ | |
| build/ | |
| dist/ | |
| #files no longer in use but keep around | |
| **/NIU/ | |
| # CMS Builder files | |
| **/cmsAdmin/lib | |
| **/cmsAdmin/uploads | |
| **/cmsAdmin/3rdParty | |
| **/cmsAdmin/data/tiny* | |
| **/cmsAdmin/data/php_error.log.php | |
| **/cmsAdmin/data/backups/ | |
| **/cmsAdmin/data/schemaPresets/ | |
| **/cmsb/lib | |
| **/cmsb/uploads | |
| **/cmsb/3rdParty | |
| **/cmsb/data/tiny* | |
| **/cmsb/data/php_error.log.php | |
| **/cmsb/data/backups/ | |
| **/cmsb/data/schemaPresets/ | |
| **/uploads/ | |
| # ignore .git itself | |
| .git/ | |
| !.gitattributes | |
| !.gitignore | |
| !.gitkeep | |
| !.git-ftp-ignore | |
| !.keep | |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # | |
| ############ | |
| # it's better to unpack these files and commit the raw source | |
| # git has its own built in compression methods | |
| *.7z | |
| *.dmg | |
| *.gz | |
| *.iso | |
| *.jar | |
| *.rar | |
| *.tar | |
| *.zip | |
| # Logs and databases # | |
| ###################### | |
| *.log | |
| *.log.php | |
| *.sql | |
| *.sqlite | |
| *.dmp | |
| log/ | |
| # OS generated files # | |
| ###################### | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| .Trash-* | |
| .AppleDouble | |
| .LSOverride | |
| # Directories potentially created on remote AFP share | |
| .AppleDB | |
| .AppleDesktop | |
| Network Trash Folder | |
| Temporary Items | |
| .apdisk | |
| # composer | |
| composer.phar | |
| # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file | |
| # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file | |
| composer.lock | |
| # laravel | |
| /bootstrap/compiled.php | |
| .env.*.php | |
| .env.php | |
| # Windows image file caches | |
| Thumbs.db | |
| ehthumbs.db | |
| # Folder config file | |
| Desktop.ini | |
| # Recycle Bin used on file shares | |
| $RECYCLE.BIN/ | |
| # Windows Installer files | |
| *.cab | |
| *.msi | |
| *.msm | |
| *.msp | |
| # Windows shortcuts | |
| *.lnk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment