Should I add .idea/jarRepositories.xml to gitignore?
It was generated after updating Android Studio to 4.0
Asked
Active
Viewed 917 times
4

kiyosuke
- 71
- 5
-
1I had the same question, and found that [it has only redundant information about remote jar repositories](https://stackoverflow.com/a/63544057/9298629). – qtmfld Aug 23 '20 at 06:43
1 Answers
3
As illustrated by this PR, you can add .idea/jarRepositories.xml
to .gitignore
(and git rm --cached .idea/jarRepositories.xml
)
gitignore.io
with IntelliJ preset removes the file- I guess we're using the auto-import feature and don't need to track this file

VonC
- 1,262,500
- 529
- 4,410
- 5,250