git blame on windows reports “fatal: no such path <path> in HEAD”

耗尽温柔 提交于 2020-01-01 08:17:20

问题


When I run git blame on a file in a folder e,g,:

git blame Foo/FileA.txt

it returns

fatal: no such path 'Foo/FileA.txt' in HEAD

I can clearly see that this file exists on the file system, and other files in the same folder can be successfully blamed - so what is going on?

I'm posting this question and answer as it had me stumped for a while today, and I couldn't find a single answer that hit all of the solution.


回答1:


This is due to renaming a parent folder on the file system with a new name that varies only by case - and some files were added in a commit occurring before the rename of the folder. Here is a repro, from a Powershell prompt:

mkdir C:\RenameProblem
cd C:\RenameProblem
git init
mkdir foo
"FileA" > foo/FileA.txt
git add foo/FileA.txt
git commit -m "Add FileA"

Then in windows explorer, rename directory "foo" to "Foo" and then continue in Powershell with:

"FileB" > Foo/FileB.txt
git add Foo/FileB.txt
git commit -m "Add FileB"

At this point, git blame /Foo/FileA.txt (which tab completion will generate since the folder has renamed) will fail with the no such path error, whereas git blame /Foo/FileB.txt or even git blame /foo/FileA.txt will succeed.

Futhermore, a call to git ls-files Foo will list only FileB.txt and git ls-files foo will list only FileA.txt. Not a great place to be on Windows.

In my case, I had a large number of files split between the two versions of the folder name.

You can solve this by renaming the file with git mv:

git mv foo/FileA.txt Foo/FileA.txt
git commit -am "Rename foo to Foo"

If you need to rename a lot of files, use a bit of Powershell (also, note that git mv has a -n switch to do a "what-if" dry run, so you can check your rename is correct):

git ls-files foo | % { (& git mv $_ $('F' + $_.Substring(1))) }

The above uses git ls-files to get a list of files in the problem "foo" folder, pipes this into a "ForEach" (% is the shortcut for that) and then executes git mv for each file supplying the original name ($_) and the new name of 'F' and the rest of the file name ('F' + $_.Substring(1)))




回答2:


Another possibility is that the file or a containing directory are a symbolic link. You can use ls -l to verify this is the case. Try to blame the file in its original location instead.



来源:https://stackoverflow.com/questions/42077734/git-blame-on-windows-reports-fatal-no-such-path-path-in-head

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!