如何使用分支名称显示git日志

hmae6n7t  于 2023-02-02  发布在  Git
关注(0)|答案(1)|浏览(126)

我尝试了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日志?

8xiog9wr

8xiog9wr1#

$ 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脚本化("plumbing")列表,试试这个:
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: Finding what branch a commit came from

相关问题