github创建分支

Posted aiyr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github创建分支相关的知识,希望对你有一定的参考价值。

创建和删除分支:

在本地新建一个分支: 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创建分支的主要内容,如果未能解决你的问题,请参考以下文章

github怎样创建gh-page

在github上创建新分支

Github 创建新分支

如何从 GitHub 上可用的代码创建分支 [重复]

github 在ubuntu 使用--解决冲突,创建分支

github 分支操作