【Git的基本操作十】远程库分支操作
远程库分支操作
1. 推送分支
- 在本地库新建分支
git branch [新分支名]
如创建一个develop分支:
git branch develop
- 推送分支(将新分支发布在github上)
git push [远程库别名] [分支名]
git push [远程库别名]/[分支名]
如:
git push origin develop
git push origin/develop
2. 拉取指定分支
-
方法一
将想要被拉取的远程库的改为默认分支,如图:
-
方法二(使用Git下载指定分支)
git clone -b [分支名] [仓库地址] 如: git clone -b develop https://github.com/Hoopoe-H/b1902-1.git
3. 在本地删除一个分支
git branch -d newBranch
4. 在github远程端删除一个分支
git push origin :newBranch (分支名前的冒号代表删除)