markdown 在Git中重命名远程分支

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在Git中重命名远程分支相关的知识,希望对你有一定的参考价值。

1. Start by switching to the local branch which you want to rename:  
`git checkout <old_name>`

2. Rename the local branch by typing: 
`git branch -m <new_name>`

3. If you’ve already pushed the <old_name> branch to the remote repository delete the <old_name> remote branch: 
`git push origin --delete <old_name>`

4. Finally push the <new_name> local branch and reset the upstream branch: 
`git push origin -u <new_name>`

以上是关于markdown 在Git中重命名远程分支的主要内容,如果未能解决你的问题,请参考以下文章

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

当远程分支在 Git 中重命名时,如何更新我的本地引用?

text 在GIT中重命名分支

在 bitbucket 中重命名合并的分支名称

Git查看删除重命名远程分支和tag转

删除分支后在 Github 中重命名/编辑标签?