sh 重命名git分支(本地和远程)

Posted

tags:

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

#!/bin/bash

git branch -m old_branch new_branch # Rename branch locally    
git push origin :old_branch         # Delete the old branch    
git push -u origin new_branch       # Push the new branch, set local branch to track the new remote

以上是关于sh 重命名git分支(本地和远程)的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

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

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