目前,如果我想知道指向当前提交的分支,我使用
git show-ref | grep "<SHA1>"
其中 <SHA1> 是当前提交。

这会产生类似的输出

<SHA1> refs/heads/branch-name1
<SHA1> refs/heads/branch-name2
<SHA1> refs/remotes/origin/branch-name1

有没有更简单的方法来获取指向当前提交的分支?类似的东西
git-ideal-command-without-parameters
其中产生
branch-name1
branch-name2
origin/branch-name1

?

最佳答案

git branch --points-at HEAD
HEAD 是对当前 check out 提交的引用。

See git-branch 了解更多信息。

关于git - 哪些 git 分支指向当前提交?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55882781/

10-15 16:23