赞
踩
git checkout -b sit-basic-v1.0.1
创建成功后本地就存在和远程同名的分支了
git branch --set-upstream-to=origin/sit-basic-v1.0.1
git branch -vv
测试已经成功关联分支,并可以提交代码到远程分支
git checkout -b demo
git push origin demo
此时远程仓库就有 demo 分支了
The current branch demo has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin demo
git branch --set-upstream-to=origin/demo
此时本地代码已可以成功提交到demo分支
转载自https://blog.csdn.net/weixin_43877778/article/details/121083075
1.新建一个空文件夹,进入文件夹,在空白处右击鼠标右键,点击git bash here
弹出git命令窗口;
2.输入命令 git init 此时会生成一个.git文件夹;
3.使用命令git clone -b 分支名 '远程仓库的http地址' 克隆远程分支;
4.此时可到第一步的空文件夹下发现已经克隆成功;
————————————————
版权声明:本文为CSDN博主「袁梦码」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_63610637/article/details/126738037
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。