查看当前分支
git branch
查看所有分支
git branch -a
切换分支
git checkout xxx
当前分支下新建分支
git checkout -b xxx
将新创建的分支push到远端仓库
git push origin xxx
建立本地到远端仓库的链接,这样代码才可提交上去
git branch --set-upstream-to=origin/xxx
拉取验证
git pull
2023-11-08 13:05:52
查看当前分支
git branch
查看所有分支
git branch -a
切换分支
git checkout xxx
当前分支下新建分支
git checkout -b xxx
将新创建的分支push到远端仓库
git push origin xxx
建立本地到远端仓库的链接,这样代码才可提交上去
git branch --set-upstream-to=origin/xxx
拉取验证
git pull