Tyapysheva / Observer

0 stars 0 forks source link

The rules of git-repository hygiene #1

Open FokinAlex opened 5 years ago

FokinAlex commented 5 years ago

Add the .gitignore file. Something like this must be added into the .gitignore file:

# IDE stuff
**/.idea/**
**/target/**

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar

# Virtual machine crash logs
hs_err_pid*
FokinAlex commented 5 years ago

Use it for your future projects - keep your repositories clean.