我刚刚重命名了我的本地分支使用
git branch -m oldname newname
但这只是重命名分支的本地版本。我如何在GitHub上重命名一个?
我刚刚重命名了我的本地分支使用
git branch -m oldname newname
但这只是重命名分支的本地版本。我如何在GitHub上重命名一个?
当前回答
另一种方法是重命名以下文件:
导航您的项目目录。 将.git/refs/head/[branch-name]重命名为.git/refs/head/new-branch-name。 将.git/refs/remotes/[all-remote-names]/[branch-name]重命名为.git/refs/remotes/[all-remote-names]/new-branch-name。
重命名本地PC和源/远程服务器上的头和远程。
分支现在重命名(本地和远程!)
注意
如果你当前的branch-name包含斜杠(/),Git会像这样创建目录:
当前分支名称:"awe/some/branch"
. /文献/头/敬畏/一些/分支 . /文献/遥控器/ [all-remote-names] /敬畏/一些/分支
祝愿分支-name: "new-branch-name"
导航您的项目目录。 从.git/refs/*/awe/some/中复制分支文件。 把它放在。git/refs/head/中。 从所有的。git/refs/remotes/*/awe/some/中复制分支文件。 把它们放在。git/refs/remotes/*/中。 将所有复制的分支文件重命名为new-branch-name。 检查目录和文件结构现在看起来是否像这样:
. / /头/ new-branch-name。参考文献 . /文献/遥控器/ [all-remote-names] / new-branch-name
对所有远程源/服务器(如果存在的话)执行同样的操作
信息:在远程服务器上通常没有refs/remotes/*目录,因为你已经在远程服务器上;)(好吧,也许在高级Git配置中这是可能的,但我从未见过)
分支现在从awe/some/ Branch重命名为new-branch-name(本地和远程!)
branch-name中的目录被移除。
信息:这种方法可能不是最好的,但它仍然适用于那些可能对其他方法有问题的人
其他回答
就我而言,我需要一个额外的命令,
git branch --unset-upstream
让我的重命名分支推到原点newname。
(为了便于输入),我首先git签出oldname。 然后执行如下命令:
Git branch -m newname <br/> Git push origin:oldname*或* Git push origin——delete oldname Git分支——unset-upstream Git push -u origin newname或Git push origin newname
这个额外的步骤可能只是必要的,因为我(倾向于)通过git push -u origin oldname在我的分支上设置远程跟踪。这样,当我签出oldname时,我随后只需要键入git push而不是git push origin oldname。
如果我没有在git push origin newbranch之前使用命令git branch——unset-upstream, git会重新创建oldbranch并将newbranch推到原点oldbranch——这就违背了我的意图。
简单三步
Git push origin head Git branch -m old-branch-name new-branch-name Git push origin head
这是Hazarapet Tunanyan回答的附加条件。
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
# You might be getting an error doing the above step, skip to the next step
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
你在git push origin:old_branch时会得到一个错误,因为你试图删除的old_branch可能是默认的分支。
只需要执行另外2步,然后转到github,从设置中更改默认分支,然后你就可以执行git push origin:old_branch了。
另一种方法是重命名以下文件:
导航您的项目目录。 将.git/refs/head/[branch-name]重命名为.git/refs/head/new-branch-name。 将.git/refs/remotes/[all-remote-names]/[branch-name]重命名为.git/refs/remotes/[all-remote-names]/new-branch-name。
重命名本地PC和源/远程服务器上的头和远程。
分支现在重命名(本地和远程!)
注意
如果你当前的branch-name包含斜杠(/),Git会像这样创建目录:
当前分支名称:"awe/some/branch"
. /文献/头/敬畏/一些/分支 . /文献/遥控器/ [all-remote-names] /敬畏/一些/分支
祝愿分支-name: "new-branch-name"
导航您的项目目录。 从.git/refs/*/awe/some/中复制分支文件。 把它放在。git/refs/head/中。 从所有的。git/refs/remotes/*/awe/some/中复制分支文件。 把它们放在。git/refs/remotes/*/中。 将所有复制的分支文件重命名为new-branch-name。 检查目录和文件结构现在看起来是否像这样:
. / /头/ new-branch-name。参考文献 . /文献/遥控器/ [all-remote-names] / new-branch-name
对所有远程源/服务器(如果存在的话)执行同样的操作
信息:在远程服务器上通常没有refs/remotes/*目录,因为你已经在远程服务器上;)(好吧,也许在高级Git配置中这是可能的,但我从未见过)
分支现在从awe/some/ Branch重命名为new-branch-name(本地和远程!)
branch-name中的目录被移除。
信息:这种方法可能不是最好的,但它仍然适用于那些可能对其他方法有问题的人
我找到了三个关于如何更改Git分支名称的命令,这些命令是一种更快的方法:
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
如果你需要循序渐进,你可以阅读这篇很棒的文章:
如何重命名Git本地和远程分支