Last active
October 8, 2019 14:06
-
-
Save wgx731/5275806 to your computer and use it in GitHub Desktop.
combined .gitignore template file
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
################################################### | |
## Linux.gitignore | |
################################################### | |
*~ | |
# KDE directory preferences | |
.directory | |
################################################### | |
## OSX.gitignore | |
################################################### | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
################################################### | |
## Windows.gitignore | |
################################################### | |
# 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 | |
#*************************************************# | |
################################################### | |
## Vim.gitignore | |
################################################### | |
[._]*.s[a-w][a-z] | |
[._]s[a-w][a-z] | |
*.un~ | |
Session.vim | |
.netrwhist | |
*~ | |
################################################### | |
## JetBrains.gitignore | |
################################################### | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm | |
## Directory-based project format | |
.idea/ | |
# if you remove the above rule, at least ignore user-specific stuff: | |
# .idea/workspace.xml | |
# .idea/tasks.xml | |
# and these sensitive or high-churn files: | |
# .idea/dataSources.ids | |
# .idea/dataSources.xml | |
# .idea/sqlDataSources.xml | |
# .idea/dynamic.xml | |
## File-based project format | |
*.ipr | |
*.iml | |
*.iws | |
## Additional for IntelliJ | |
out/ | |
# generated by mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# generated by JIRA plugin | |
atlassian-ide-plugin.xml | |
# generated by Crashlytics plugin (for Android Studio and Intellij) | |
com_crashlytics_export_strings.xml | |
################################################### | |
## Maven.gitignore | |
################################################### | |
target/ | |
pom.xml.tag | |
pom.xml.releaseBackup | |
pom.xml.versionsBackup | |
pom.xml.next | |
release.properties | |
################################################### | |
## Gradle.gitignore | |
################################################### | |
.gradle | |
build/ | |
# Ignore Gradle GUI config | |
gradle-app.setting | |
################################################### | |
## Leiningen.gitignore | |
################################################### | |
pom.xml | |
pom.xml.asc | |
*.jar | |
*.class | |
/lib/ | |
/classes/ | |
/target/ | |
/checkouts/ | |
.lein-deps-sum | |
.lein-repl-history | |
.lein-plugins/ | |
.lein-failures | |
.nrepl-port | |
.cpcache/ | |
################################################### | |
## Python.gitignore | |
################################################### | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python | |
env/ | |
build/ | |
develop-eggs/ | |
dist/ | |
eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
# PyInstaller | |
# Usually these files are written by a python script from a template | |
# before PyInstaller builds the exe, so as to inject date/other infos into it. | |
*.manifest | |
*.spec | |
# Installer logs | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.coverage | |
.cache | |
nosetests.xml | |
coverage.xml | |
# Translations | |
*.mo | |
*.pot | |
# Sphinx documentation | |
docs/_build/ | |
# PyBuilder | |
target/ | |
################################################### | |
## Virtualenv.gitignore | |
################################################### | |
.Python | |
[Bb]in | |
[Ii]nclude | |
[Ll]ib | |
[Ss]cripts | |
################################################### | |
## Django.gitignore | |
################################################### | |
logs/ | |
*.log | |
*.pot | |
local_settings.py | |
################################################### | |
## Java.gitignore | |
################################################### | |
*.class | |
# Mobile Tools for Java (J2ME) | |
.mtj.tmp/ | |
# Package Files # | |
*.jar | |
*.war | |
*.ear | |
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | |
hs_err_pid* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment