I have a two .gitignore
files because one didn't work in the past and I had to create the second one; they which looks:
/target/
.idea/
and .gitignore.gitignore
which looks:
*/target/**
/target/**
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
target/
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
.idea/
### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/
and still it includes those files which are in .gitignore
- why?