markdown 创建新的本地分支并推送到Github

Posted

tags:

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

`git checkout -b [name_of_your_new_branch]`

`git push origin [name_of_your_new_branch]` 


##### Make your first edit/update on new local branch and push using:
`git push --set-upstream origin [name_of_your_new_branch]`

##### You can then use the following from whichever branch (master or new_branch):
`git push`

以上是关于markdown 创建新的本地分支并推送到Github的主要内容,如果未能解决你的问题,请参考以下文章

git 创建分支并推送到远程分支

Git 本地新建,删除分支并推送到远程仓库

新建分支并推送到远程仓库

新建分支并推送到远程仓库

markdown git将本地分支推送到新的远程分支

Git常用命令收集