The setup
New intellij install, new sourcetree installation, new android project, .gitignore
has been initialized as:
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
The problem
The files in the gradle wrapper, that's gradle/wrapper/gradle.properties
and gradle/wrapper/gradle.jar
are ignored. And they should be added.
$git add gradle/wrapper/gradle-wrapper.jar
The following paths are ignored by one of your .gitignore files:
gradle/wrapper/gradle-wrapper.jar
It does not tell me which .gitignore
file.
There is no .gitignore
in gradle/
or gradle/wrapper
.
While I can force this, I don't want to forget in future projects.