-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d0e8f0
commit ab62792
Showing
1 changed file
with
34 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,55 @@ | ||
# Rules to ignore files and folders correctly | ||
# NOTE: Only untracked (unversioned) files can be ignored | ||
# The backslash gets used for masking. E.g. \.metadata searches for the literal string ".metadata" | ||
# A leading "**" followed by a "/" means match in all directories. E.g. "**/test" ignores all "test" foldes in the repository. | ||
# A trailing "**" matches everthing inside the folder relative to the gitignore file. | ||
|
||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# Other files | ||
#*.xml | ||
#*.txt | ||
*.png | ||
*.jpg | ||
*.lst | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
#*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
*.7z | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
# virtual machine crash logs | ||
hs_err_pid* | ||
|
||
# Eclipse files | ||
#.project | ||
javadoc* | ||
|
||
# OS files | ||
.DS_Store* | ||
|
||
# Folders | ||
**/.metadata/** | ||
**/.settings/** | ||
**/.idea/** | ||
**/logs/** | ||
**/target/** | ||
**/bin/** | ||
**/classes/** | ||
**/RegressionTestData_Extracted/** | ||
**/output/** |