赞
踩
常用的新建分支命令格式:git branch newbranchname/git checkout -b newbranchname。
git branch与git checkout -b的异同点:
相同点:
git branch和git checkout -b都可以用于新建分支(默认基于当前分支结点创建)。
不同点: