一些git-bisect的documentation说,“引用refs/bisect/bad
将指向该提交。”我不确定什么是“参考”。
如何查看refs/bisect/bad
的含义?
我检查了How to use git bisect?,但我认为它不能解释如何查看refs/bisect/bad
指向的内容。
答案 0 :(得分:0)
要查看refs/bisect/bad
指向的内容,我可以使用以下命令:
git show-ref refs/bisect/bad
我是通过在Google上搜索“ refs / bisect / bad”发现此问题的,我发现https://github.com/github/git-msysgit/blob/master/git-bisect.sh使用了git show-ref
。然后我认为“引用”可能是git概念,因此我搜索了“如何查看git引用”,并确定它给了我文档https://git-scm.com/docs/git-show-ref。
我希望这可以帮助其他人搜索相同的答案。