git新建分支

新建分支:

git checkout -b name //新建分支

git push origin jr_v3 //创建远程仓库分支

切换分支:git checkout 分支名字

git checkout -b zy origin/zy // 从远端抓取 zy 分支到本地并切换

猜你喜欢

转载自blog.csdn.net/lbPro0412/article/details/87936720