Reputation: 39978
I have changed a file and checked the git status then it's showing me same file twice. I searched the web but couldn't find anything
My configuration
git version 2.4.9 (Apple Git-60)
OSX 10.11.2
Upvotes: 3
Views: 1751
Reputation: 39978
Apparently the below solution doesn't worked for me
git mv -f Myamcat MyAmcat
git was throwing error fatal: renaming 'MyAmcat' failed: Invalid argument
So I just did a workaround
git mv Myamcat MyAmcatTemp
git commit -m "changed dir"
git mv MyAmcatTemp MyAmcat
git commit -m "changed to exact dir"
Upvotes: 1