哪个git分支指向当前提交?

时间:2019-04-27 16:51:09

标签: git

当前,如果我想知道指向当前提交的分支,则使用

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

1 个答案:

答案 0 :(得分:3)

git branch --points-at HEAD

HEAD是对当前已检出提交的引用。

See git-branch了解更多信息。