不想修改的文件可以配置如下
*.class # 忽略所有 .class 结尾的文件
!a.class # 但 a.class 除外
/.config # 忽略项目根目录下的 .config 文件,不包括 otherDir/.config
target/ # 忽略 target/ 目录下的所有文件
doc/*.txt # 会忽略 doc/notes.txt 但不包括 doc/readme/a.txt
# 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
*.iml
.idea
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
target/