有的时间创建的文件,不想被提交到版本控制的的选项中。在IDEA中安装ignore插件。创建好了之后:
二种方式
方法一 使用.ignore插件自动生成.gitignore文件
点击生成之后会出现很多模板供选择,单击可查看内容,选择java
方法二 在根目录新建.gitignore
#bin/: 忽略当前路径下的bin文件夹,该文件夹下的所有内容都会被忽略,不忽略 bin 文件
#/bin: 忽略根目录下的bin文件
#/*.c: 忽略 cat.c,不忽略 build/cat.c
#debug/*.obj: 忽略 debug/io.obj,不忽略 debug/common/io.obj 和 tools/debug/io.obj
#**/foo: 忽略/foo, a/foo, a/b/foo等
#a/**/b: 忽略a/b, a/x/b, a/x/y/b等
#!/bin/run.sh: 不忽略 bin 目录下的 run.sh 文件
#*.log: 忽略所有 .log 文件
#config.php: 忽略当前路径的 config.php 文件
target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
*.tar.zip
.idea/
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ini
*.ipr
*.class
.idea/*
# Package Files #
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar
### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/
**/test/
#html
**/node_modules
**/.history
**/.vscode
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
右击想要添加到.gitignore的文件或目录,选择Add to .gitignore file