我正在尝试修复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~
答案 0 :(得分:2)
没有HEAD
,因为您尚未对存储库进行任何提交。 HEAD
通常指向当前已检出的提交,但由于您的树中没有提交,HEAD
没有指向任何内容,因此git show HEAD
失败。