常用的新建分支命令格式:git branch newbranchname/git checkout -b newbranchname。
git branch与git checkout -b的异同点:
相同点:
git branch和git checkout -b都可以用于新建分支(默认基于当前分支结点创建)。
不同点:
- git branch新建分支后并不会切换到新分支;
- git checkout -b新建分支后会自动切换到新分支。
常用的新建分支命令格式:git branch newbranchname/git checkout -b newbranchname。
git branch与git checkout -b的异同点:
相同点:
git branch和git checkout -b都可以用于新建分支(默认基于当前分支结点创建)。
不同点: