Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 226 Bytes

006.创建和切换分支.md

File metadata and controls

17 lines (13 loc) · 226 Bytes

1 创建分支

git branch 分支名称
# 例
git branch 分支1
git log --all --oneline --graph # 以图形化 简洁模式 查看

2 切换分支

git checkout  
# 例
git checkout 分支1