如何显示git的日志,支行名称(How to show git log with branch na

2019-07-05 22:37发布

我尝试git log W / --decorate--source选项。 但仍无法得到承诺的分支名2f3cb60d7e7776 ,为什么呢?

#git log 2f3cb60 --graph  --decorate --source --all --oneline
...
* | | | 1920ad5 refs/heads/gpio support gpio lib
| |/ /
|/| |
* | | 2f3cb60   2f3cb60 fix
* | | d7e7776   2f3cb60 fix
| |/
|/|
* | aa4dcfb     refs/remotes/origin/httpd support
* | cfc839d     refs/remotes/origin/httpd add folder

如何显示git的日志与分支的名字吗?

Answer 1:

$ git log --graph --decorate --oneline
* 1f3e836 (HEAD, origin/v2, v2) Change scripts to new format.
*   34d458f (origin/master, master) Merge branch 'new-shell'
|\  
| * 995ece7 (origin/new-shell) Fix index.html and add script pushing.
| * fe0615f New shell hello-world.
|/  
* fe1b1c0 Progress.
...

git log --graph --decorate --oneline应该告诉你有名字提交的名称。 并不是每一个提交与该分支名称相关联。

请记住,一个分支的名字只是一个指针,指向一个特定的提交。 每犯有父母,所以一个犯可能是十几个单独的分支的历史的一部分。

  • 你可以看到哪个分支包含经由一个提交git branch --contains <ref>
  • 如果你只是需要某种符号名的追查提交,使用git name-rev <ref>
  • 如果你需要一个shell脚本化( “管道” )含有提交所有分支机构的名单,试试这个:

     commit=$(git rev-parse <ref>) # expands hash if needed for branch in $(git for-each-ref --format "%(refname)" refs/heads); do if git rev-list "$branch" | fgrep -q "$commit"; then echo "$branch" fi done 

参见: SO:寻找一个犯了什么分支是从哪里来的



文章来源: How to show git log with branch name