text 更新本地和远程git分支

Posted

tags:

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

# Rename the local branch to the new name
git branch -m <old_name> <new_name>

# Delete the old branch on remote - where <remote> is, for example, origin
git push <remote> --delete old_name

# Push the new branch to remote
git push <remote> new_name

# Reset the upstream branch for the new_name local branch
git push <remote> -u new-name

以上是关于text 更新本地和远程git分支的主要内容,如果未能解决你的问题,请参考以下文章

text 在git中重命名本地和远程分支

git远程分支创建,本地分支关联远程分支,第一次发布更新分支

Git 更新本地代码

git如何强制用远程分支更新本地

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

git从入门到精通(合并分支,将更新提交到远程仓库,将本地分支与远程分支做关联)