Git学习笔记3:通过git log 查看版本演变历史

1.查看git commit 的列表 使用命令: git log --online 2.指定最近的4个commit 查看演变列表 使用命令: git log -n4 --online 3.查看本地的分支 使用命令: git branch -v 4.创建一个临时的分支,这个分支的版本来自于现有版本的某一次提交 使用命令: git checkout -b temp(分支名) 412da1q1r(某一次
相关文章
相关标签/搜索