sh 如何将新的本地分支推送到远程Git存储库并跟踪它?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如何将新的本地分支推送到远程Git存储库并跟踪它?相关的知识,希望对你有一定的参考价值。


# In Git 1.7.0 and later, you can checkout a new branch:
git checkout -b <branch>

# Edit files, add and commit. Then push with the -u option:
git push -u origin <branch>


# delete remote branch
git push origin --delete <branch>

# delete local branch
git branch -d <branch>

以上是关于sh 如何将新的本地分支推送到远程Git存储库并跟踪它?的主要内容,如果未能解决你的问题,请参考以下文章

text Git:将新的本地分支推送到远程

git 创建分支并推送到远程

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

为啥不能将新添加的文件推送到远程存储库?

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

git怎么将本地仓库推送到一个新的远程分支包含所有历史提交信息