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

github创建分支

时间:2018-12-02 13:36:36      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:.net   net   远程   delete   art   new   detail   tps   一个   

创建和删除分支:

在本地新建一个分支: git branch newBranch
切换到你的新分支: git checkout newBranch
将新分支发布在github上: git push origin newBranch
在本地删除一个分支: git branch -d newBranch
在github远程端删除一个分支: git push origin :newBranch (分支名前的冒号代表删除)
/git push origin –delete newBranch
注意删除远程分支后,如果有对应的本地分支,本地分支并不会同步删除!
---------------------
原文:https://blog.csdn.net/zxy987872674/article/details/72491066 

github创建分支

标签:.net   net   远程   delete   art   new   detail   tps   一个   

原文地址:https://www.cnblogs.com/aiyr/p/10053003.html

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