git log --oneline --graph

  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)