Inder Kumar Rathore
Inder Kumar Rathore

Reputation: 39978

Why git status shows same file twice?

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

enter image description here

Upvotes: 3

Views: 1751

Answers (1)

Inder Kumar Rathore
Inder Kumar Rathore

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

Related Questions