- 基于某次提交创建新分支,并checkout到新分支上
git checkout -b newbranchname commitid
- 查看当前分支的commit历史
git log
- 查看所有分支的commit历史
git log --all
- 查看所有分支图形化的commit历史(oneline 一条提交信息用一行展示)
git log --all --oneline --graph
git checkout -b newbranchname commitid
git log
git log --all
git log --all --oneline --graph
本文标题:git log --oneline --graph
本文链接:https://www.haomeiwen.com/subject/dzdfzctx.html
网友评论