Fix conflicting/suspicious .gitignore config
This commit is contained in:
parent
70b85d5b4f
commit
5028c2fb7d
|
@ -16,9 +16,7 @@ lib
|
||||||
|
|
||||||
# IntelliJ specific files/directories
|
# IntelliJ specific files/directories
|
||||||
out
|
out
|
||||||
.idea
|
# See .idea/.gitignore for more precise rules in that directory
|
||||||
!.idea/codeStyles/Project.xml
|
|
||||||
!.idea/inspectionProfiles/Project_Default.xml
|
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
*.iml
|
*.iml
|
||||||
|
@ -47,10 +45,9 @@ ObjectStore
|
||||||
*.hprof
|
*.hprof
|
||||||
/.nb-gradle/
|
/.nb-gradle/
|
||||||
|
|
||||||
# Additional databases used in local envs
|
|
||||||
databases/mysql/
|
|
||||||
databases/postgis/
|
|
||||||
|
|
||||||
# Vim
|
# Vim
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
|
|
||||||
|
# SDKman, used by some module maintainers
|
||||||
|
.sdkmanrc
|
|
@ -0,0 +1,9 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
||||||
|
|
||||||
|
# See https://stackoverflow.com/a/67976259/6692043
|
||||||
|
!codeStyles/
|
||||||
|
!codeStyles/Project.xml
|
||||||
|
!codeStyles/codeStyleConfig.xml
|
||||||
|
!inspectionProfiles/
|
||||||
|
!inspectionProfiles/Project_Default.xml
|
|
@ -1,2 +1,3 @@
|
||||||
# The folder into which we checkout our release scripts into
|
# The folder into which we checkout our release scripts into
|
||||||
*
|
*
|
||||||
|
!.gitignore
|
|
@ -1,4 +0,0 @@
|
||||||
!mariadb/
|
|
||||||
!pgsql/
|
|
||||||
!derby/
|
|
||||||
./
|
|
|
@ -1 +1,3 @@
|
||||||
**/*
|
*
|
||||||
|
!.gitignore
|
||||||
|
!README.adoc
|
|
@ -1 +0,0 @@
|
||||||
.sdkmanrc
|
|
|
@ -1,4 +0,0 @@
|
||||||
# Enable auto-env through the sdkman_auto_env config
|
|
||||||
# Add key=value pairs of SDKs to use below
|
|
||||||
java=8.0.252.hs-adpt
|
|
||||||
|
|
Loading…
Reference in New Issue