Home > Software design >  Gradle folder fills on open
Gradle folder fills on open

Time:04-29

When i clone my github repository my gradle folder automatically fills with 3000 files. I have a .gitignore file ignoring the .gradle folder. This results in 3000 files needing a commit on git. No other users of the repo gets these, and their gradle folder only has few files shown in picture 1 (my gradle folder is shown in picture 2).

enter image description here

enter image description here

Its frustrating, since it leads to errors in github, when i have to commit this many files.

CodePudding user response:

Mostly likely - the gradle home is probably set as ./gradle in your Intellij or your login profile.

it should ideally be /Users/<>/.gradle

enter image description here

  • Related