Ignore Gradle-related files and directories
When switching back to 3.1.x from master, ignore renamed directories,
Gradle 'build' dirs, generated IDE metadata, etc.
You may wish to clean these files with
$ git clean -dfx
Or do a dry-run beforehand with the '-n' flag:
$ git clean -dfxn
This commit is contained in:
parent
e9208981a6
commit
38a62f8389
|
|
@ -16,3 +16,11 @@ org.springframework.spring-parent/.project
|
||||||
org.springframework.test/test-output/
|
org.springframework.test/test-output/
|
||||||
target
|
target
|
||||||
spring-build/lib/docbook
|
spring-build/lib/docbook
|
||||||
|
|
||||||
|
# ignore files and directories related to gradle build
|
||||||
|
/.classpath
|
||||||
|
/.project
|
||||||
|
/.gradle
|
||||||
|
/build
|
||||||
|
/spring-*
|
||||||
|
!/spring-framework-reference
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue