码迷,mamicode.com
首页 > 其他好文 > 详细

git 命令行(四)-推送分支到远程

时间:2018-07-18 17:21:28      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:class   str   两种   ranch   ber   glob   font   使用   style   

在本地新建一个分支: git branch newBranch

切换到你的新分支: git checkout newBranch
创建并切换到新分支: git checkout -b newBranch
将新分支发布在github上: git push origin newBranch
在本地删除一个分支: git branch -d newBranch
在github远程端删除一个分支: git push origin :newBranch   (分支名前的冒号代表删除)
 
直接使用git pull和git push的设置,两种方式:意思是默认将本地的dev分支的推送到origin/dev
git branch --set-upstream-to=origin/dev dev
git branch --set-upstream dev origin/dev
git config --global push.default matching

git 命令行(四)-推送分支到远程

标签:class   str   两种   ranch   ber   glob   font   使用   style   

原文地址:https://www.cnblogs.com/xuzhudong/p/9329308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!