Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
SoccerFive18 committed Mar 14, 2023
1 parent 2d0e8f0 commit ab62792
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions .gitignore
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/**

0 comments on commit ab62792

Please sign in to comment.