Created
February 25, 2017 10:02
-
-
Save amekusa/d43f2d5b2021c0b9464f023965fe81fa to your computer and use it in GitHub Desktop.
Global .gitignore
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
| # ------------------------------------------------ ---- -- - | |
| # This is global .gitignore | |
| # Place this on your home directory And run this command: | |
| # git config --global core.excludesfile ~/.gitignore | |
| # -------------------------------- ---- -- - | |
| # Created by https://www.gitignore.io/api/eclipse,vim,macos,linux,windows,archives | |
| ### Archives ### | |
| # It's better to unpack these files and commit the raw source because | |
| # git has its own built in compression methods. | |
| *.7z | |
| *.jar | |
| *.rar | |
| *.zip | |
| *.gz | |
| *.bzip | |
| *.bz2 | |
| *.xz | |
| *.lzma | |
| *.cab | |
| #packing-only formats | |
| #package management formats | |
| *.dmg | |
| *.egg | |
| ### Eclipse ### | |
| .metadata | |
| bin/ | |
| tmp/ | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *~.nib | |
| local.properties | |
| .settings/ | |
| .loadpath | |
| .recommenders | |
| # Eclipse Core | |
| .project | |
| # External tool builders | |
| .externalToolBuilders/ | |
| # Locally stored "Eclipse launch configurations" | |
| *.launch | |
| # PyDev specific (Python IDE for Eclipse) | |
| *.pydevproject | |
| # CDT-specific (C/C++ Development Tooling) | |
| .cproject | |
| # JDT-specific (Eclipse Java Development Tools) | |
| .classpath | |
| # Java annotation processor (APT) | |
| .factorypath | |
| # PDT-specific (PHP Development Tools) | |
| .buildpath | |
| # sbteclipse plugin | |
| .target | |
| # Tern plugin | |
| .tern-project | |
| # TeXlipse plugin | |
| .texlipse | |
| # STS (Spring Tool Suite) | |
| .springBeans | |
| # Code Recommenders | |
| .recommenders/ | |
| ### Linux ### | |
| *~ | |
| # temporary files which can be created if a process still has a handle open of a deleted file | |
| .fuse_hidden* | |
| # KDE directory preferences | |
| .directory | |
| # Linux trash folder which might appear on any partition or disk | |
| .Trash-* | |
| # .nfs files are created when an open file is removed but is still being accessed | |
| .nfs* | |
| ### macOS ### | |
| *.DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Icon must end with two \r | |
| Icon | |
| # Thumbnails | |
| ._* | |
| # Files that might appear in the root of a volume | |
| .DocumentRevisions-V100 | |
| .fseventsd | |
| .Spotlight-V100 | |
| .TemporaryItems | |
| .Trashes | |
| .VolumeIcon.icns | |
| .com.apple.timemachine.donotpresent | |
| # Directories potentially created on remote AFP share | |
| .AppleDB | |
| .AppleDesktop | |
| Network Trash Folder | |
| Temporary Items | |
| .apdisk | |
| ### Vim ### | |
| # swap | |
| [._]*.s[a-v][a-z] | |
| [._]*.sw[a-p] | |
| [._]s[a-v][a-z] | |
| [._]sw[a-p] | |
| # session | |
| Session.vim | |
| # temporary | |
| .netrwhist | |
| # auto-generated tag files | |
| tags | |
| ### Windows ### | |
| # Windows thumbnail cache files | |
| Thumbs.db | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| # Folder config file | |
| Desktop.ini | |
| # Recycle Bin used on file shares | |
| $RECYCLE.BIN/ | |
| # Windows Installer files | |
| # Windows shortcuts | |
| *.lnk | |
| # End of https://www.gitignore.io/api/eclipse,vim,macos,linux,windows,archives |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment