分享我的gitignore文件配置

经常用git的对.gitignore文件必定不陌生。我的 .gitignore 文件如下,仅供参考:

!.mvn/wrapper/maven-wrapper.jar

### 忽略target applog 下文件 ###

**/target/

**/applog/

**/LOG_PATH_IS_UNDEFINEDdaily/

*.class

*.log

*.apk

### STS ###

.apt_generated

.classpath

.factorypath

.project

.settings

.springBeans

.sts4-cache

### IntelliJ IDEA ###

**/out/

.idea

*.iws

*.iml

*.ipr

**/.gradle

# CMake

cmake-build-debug/

cmake-build-release/

# Mongo Explorer plugin:

.idea/**/mongoSettings.xml

## File-based project format:

*.iml

*.iws

### Maven template

target/

pom.xml.tag

pom.xml.releaseBackup

pom.xml.versionsBackup

pom.xml.next

release.properties

dependency-reduced-pom.xml

buildNumber.properties

.mvn/timing.properties

你可能感兴趣的:(分享我的gitignore文件配置)