Created
June 26, 2020 02:30
-
-
Save luizsaluti/bf4cd65e44082b2787d6d6589004ebed to your computer and use it in GitHub Desktop.
.gitignore useful entries - caminhos comuns a serem ignorados no git
This file contains 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
###################### | |
# Project Specific | |
###################### | |
/build/www/** | |
/src/test/javascript/coverage/ | |
/src/test/javascript/PhantomJS*/ | |
###################### | |
# Node | |
###################### | |
/node/ | |
node_tmp/ | |
node_modules/ | |
npm-debug.log.* | |
###################### | |
# SASS | |
###################### | |
.sass-cache/ | |
###################### | |
# Eclipse | |
###################### | |
*.pydevproject | |
.project | |
.metadata | |
tmp/ | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
.factorypath | |
/src/main/resources/rebel.xml | |
# External tool builders | |
.externalToolBuilders/** | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
###################### | |
# Intellij | |
###################### | |
.idea/ | |
*.iml | |
*.iws | |
*.ipr | |
*.ids | |
*.orig | |
###################### | |
# Visual Studio Code | |
###################### | |
.vscode/ | |
###################### | |
# Maven | |
###################### | |
/log/ | |
/target/ | |
###################### | |
# Gradle | |
###################### | |
.gradle/ | |
/build/ | |
###################### | |
# Package Files | |
###################### | |
*.jar | |
*.war | |
*.ear | |
*.db | |
###################### | |
# Windows | |
###################### | |
# Windows image file caches | |
Thumbs.db | |
# Folder config file | |
Desktop.ini | |
###################### | |
# Mac OSX | |
###################### | |
.DS_Store | |
.svn | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
###################### | |
# Directories | |
###################### | |
/bin/ | |
/deploy/ | |
###################### | |
# Logs | |
###################### | |
*.log | |
###################### | |
# Others | |
###################### | |
*.class | |
*.*~ | |
*~ | |
.merge_file* | |
###################### | |
# Gradle Wrapper | |
###################### | |
!gradle/wrapper/gradle-wrapper.jar | |
###################### | |
# Maven Wrapper | |
###################### | |
!.mvn/wrapper/maven-wrapper.jar | |
###################### | |
# ESLint | |
###################### | |
.eslintcache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment