美文网首页
git log --oneline --graph

git log --oneline --graph

作者: 维仔_411d | 来源:发表于2020-01-16 14:29 被阅读0次
  1. 基于某次提交创建新分支,并checkout到新分支上
git checkout -b newbranchname commitid
  1. 查看当前分支的commit历史
git log
  1. 查看所有分支的commit历史
git log --all
  1. 查看所有分支图形化的commit历史(oneline 一条提交信息用一行展示)
git log --all --oneline --graph

相关文章

网友评论

      本文标题:git log --oneline --graph

      本文链接:https://www.haomeiwen.com/subject/dzdfzctx.html