git 常用命令 重命名远程分支

远程分支重命名

第1步: git checkout old-name                   check out the branch
第2步: git branch -m new-name                  change local branch name
第3步: git push origin :old-name new-name      push local new-name to remote old-name and change the remote branch name

[Ref] git 远程分支重命名_如何在远程git服务器中重命名分支名称?
Further Reading :Git常用命令汇总

你可能感兴趣的:(GIT,git)