any idea why i get this in my commit pane
# android-studio
y
any idea why i get this in my commit pane
p
You have
.gitignore
the
.kotlin
directory
y
i already done that but i still get what you see in the picture
s
You may have added those files to the list of tracked files by git before you added the gitignore. If you google around how to remove tracked files that are inside gitignore already you should get smth
👍 2
👆 1
y
this is not the case i didnt get what you see in the pic until I updated to kotlin 2 so this is recent
s
Well of course, did you see the link I sent you? It explains that this is a new change in Kotlin 2.0
y
I did check it, but most of it is Chinese to me since I don't have a good grasp around gradle I just know the basic stuff
😁 1
s
Okay. This has nothing to do with Gradle or something complicated like that. Are you familiar with git and how .gitignore files can be used to not check in some parts of your project? If yes, when you said "I already did that", what did you add to your .gitignore file?
y
i added .kotlin to it since it recommended to add .kotlin to my .gitignore files
this is how it looks like
s
Then you may need to follow what is shown here https://stackoverflow.com/a/1139797/9440211 To remove the tracked from inside
.kotlin
.
👍 2
☝️ 1