springboot学习系列之git过滤文件

Git过滤文件

  • 作用
  • 操作
    • .gitattributes
    • .gitignore

作用

使用git提交代码时,只提交代码,过滤其他文件。

操作

将.gitattributes与 .gitignore拷贝到与README.md文件同级的目录文件下

.gitattributes

# Windows-specific files that require CRLF:
*.bat       eol=crlf
*.txt       eol=crlf

# Unix-specific files that require LF:
*.java      eol=lf
*.sh        eol=lf

.gitignore

target/
!.mvn/wrapper/maven-wrapper.jar

## STS ##
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans

## IntelliJ IDEA ##
.idea
*.iws
*.iml
*.ipr

## JRebel ##
rebel.xml

## MAC ##
.DS_Store

## Other ##
logs/
temp/

你可能感兴趣的:(git,git,github,gitlab)