我曾使用过 SVN,它有一个切换分支的选项,例如 svn switch 分支名称。我不确定 git 是否需要相同的切换才能在另一个分支上工作。我有 2 个分支,例如 1.0 和 1.1。到目前为止,我已经在 1.0 上工作,git pull origin 1.1 和 git push origin 1.1 够吗?还是我应该切换分支?
提前致谢。
Git 命令git checkout
用于在分支之间切换。这类似于svn switch
.
git checkout branch_name
将切换到 branch_name
如果要创建新分支,则以下命令将很有用
$git checkout -b branch_name