“git show HEAD”导致“致命:模棱两可的'HEAD':未知的修订或路径不在工作树中”

时间:2016-12-16 21:01:16

标签: git

我正在尝试修复git的问题。

当我输入git show HEAD时,我收到错误fatal : ambiguous 'HEAD': unknown revision or path not in the working tree

我该怎么做才能解决这个问题?

git status的显示是:

git status
On branch master

Initial commit

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

    new file:   script.txt

Untracked files:
  (use "git add <file>..." to include in what will be committed)

    script.txt~

1 个答案:

答案 0 :(得分:2)

没有HEAD,因为您尚未对存储库进行任何提交。 HEAD通常指向当前已检出的提交,但由于您的树中没有提交,HEAD没有指向任何内容,因此git show HEAD失败。