864

我有master跟踪远程分支的分支origin/master

我想将它们重命名为master-old本地和远程。这可能吗?

对于其他跟踪的用户origin/master(并且总是master通过 更新他们的本地分支git pull),在我重命名远程分支后会发生什么?
他们git pull仍然可以工作还是会抛出一个它再也找不到的错误origin/master

然后,进一步,我想创建一个新master分支(本地和远程)。同样,在我这样做之后,如果其他用户这样做,现在会发生什么git pull

我想这一切都会带来很多麻烦。有没有一种干净的方法可以得到我想要的东西?还是我应该master保持原样并创建一个新分支master-new并在那里继续工作?

4

16 回答 16

640

最接近重命名的是删除然后在遥控器上重新创建。例如:

git branch -m master master-old
git push remote :master         # Delete master
git push remote master-old      # Create master-old on remote

git checkout -b master some-ref # Create a new local master
git push remote master          # Create master on remote

但是,这有很多警告。首先,现有的结帐不会知道重命名 - Git 不会尝试跟踪分支重命名。如果新master的还不存在,git pull将出错。如果新master的已经创建。拉将尝试合并mastermaster-old。所以这通常不是一个好主意,除非您得到之前签出存储库的每个人的合作。

注意:较新版本的 Git 默认不允许远程删除 master 分支。您可以通过将receive.denyDeleteCurrent配置值设置到远程存储库warnignore远程存储库上来覆盖它。否则,如果您准备好立即创建新的主节点,请跳过该git push remote :master步骤,然后--force转到该git push remote master步骤。请注意,如果您无法更改远程的配置,您将无法完全删除 master 分支!

此警告仅适用于当前分支(通常是master分支);可以如上所述删除和重新创建任何其他分支。

于 2009-10-06T17:35:11.310 回答
266

假设您目前在master

git push origin master:master-old        # 1
git branch master-old origin/master-old  # 2
git reset --hard $new_master_commit      # 3
git push -f origin                       # 4
  1. 首先根据本地存储库中的提交在存储库中创建一个master-old分支。originmaster
  2. 为这个新分支创建一个新的本地分支origin/master-old(将自动正确设置为跟踪分支)。
  3. 现在将您的本地指向master您希望它指向的任何提交。
  4. 最后,强制更改存储库masterorigin反映您的新本地master.

(如果您以任何其他方式执行此操作,则至少需要再执行一个步骤以确保master-old正确设置为 track origin/master-old。在撰写本文时发布的其他解决方案均不包括该解决方案。)

于 2010-09-24T20:21:12.997 回答
175

使用 Git v1.7,我认为这已经发生了轻微的变化。更新本地分支对新远程的跟踪引用现在非常容易。

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
于 2013-04-25T17:22:13.200 回答
38
git checkout -b new-branch-name
git push remote-name new-branch-name :old-branch-name

new-branch-name您可能必须在删除之前手动切换到old-branch-name

于 2012-02-10T02:29:52.777 回答
35

有很多方法可以重命名分支,但我将关注更大的问题:“如何让客户快速前进,而不必在本地弄乱他们的分支”

先来一张速图: 重命名主分支并允许客户端快进

这实际上很容易做到。但不要滥用它。整个想法取决于合并提交;因为它们允许快进,并将一个分支的历史与另一个联系起来。

重命名分支:

# rename the branch "master" to "master-old"
# this works even if you are on branch "master"
git branch -m master master-old

创建新的“master”分支:

# create master from new starting point
git branch master <new-master-start-point>

创建合并提交以具有父子历史记录:

# now we've got to fix the new branch...
git checkout master

# ... by doing a merge commit that obsoletes
# "master-old" hence the "ours" strategy.
git merge -s ours master-old

瞧。

git push origin master

这是可行的,因为创建merge提交允许将分支快速转发到新修订版。

使用合理的合并提交消息:

renamed branch "master" to "master-old" and use commit ba2f9cc as new "master"
-- this is done by doing a merge commit with "ours" strategy which obsoletes
   the branch.

these are the steps I did:

git branch -m master master-old
git branch master ba2f9cc
git checkout master
git merge -s ours master-old
于 2014-03-18T00:48:00.943 回答
12

我假设您仍在询问与上一个问题相同的情况。也就是说,master-new 在其历史中不会包含 master-old。* 如果您将 master-new 称为“master”,您将有效地重写历史。无论您如何进入一个状态,其中 master 不是之前 master 位置的后代,只要它处于那个状态即可。

其他用户在 master 不存在时尝试拉取只会让他们的拉取失败(远程上没有这样的 ref),一旦它再次存在于新的地方,他们的拉取将不得不尝试将他们的 master 与新的远程 master 合并,就像您在存储库中合并了 master-old 和 master-new 一样。鉴于您在这里尝试执行的操作,合并会产生冲突。(如果它们被解决,并且结果被推回存储库,你将处于更糟糕的状态 - 两个版本的历史都在那里。)

简单地回答你的问题:你应该接受有时你的历史会出现错误。这没关系。它发生在每个人身上。git.git 存储库中有还原的提交。重要的是,一旦我们发布历史,这是每个人都可以信任的。

*如果是这样,这相当于将一些更改推送到 master 上,然后在原来的位置创建一个新分支。没问题。

于 2009-10-06T17:12:33.690 回答
10

我尝试时选择的答案失败了。它抛出一个错误:refusing to delete the current branch: refs/heads/master。我想我会发布对我有用的东西:

git checkout master             # If not in master already

git branch placeholder          # Create placeholder branch
git checkout placeholder        # Check out to placeholder
git push remote placeholder     # Push placeholder to remote repository

git branch -d master            # Remove master in local repository
git push remote :master         # Remove master from remote repository.

诀窍是在将占位符推送到远程存储库之前检查占位符。其余的不言自明;删除主分支并将其推送到远程存储库现在应该可以工作了。摘自这里

于 2011-12-25T12:28:27.980 回答
2

登录服务器,进入Git目录,在裸仓库重命名分支。

这没有与重新上传相同分支相关的所有问题。实际上,“客户”会自动识别修改后的名称并更改其远程引用。

之后(或之前)您还可以修改分支的本地名称。

于 2010-12-24T04:50:28.527 回答
1

关于什么:

git checkout old-branch-name
git push remote-name new-branch-name
git push remote-name :old-branch-name
git branch -m new-branch-name
于 2010-08-17T08:21:10.470 回答
1

这是我所知道的最简单和最“可读”的方式:

使用 -m '移动'本地分支

git branch -m my_old_branch_name my_new_branch_name

将“移动”分支推送到远程,使用 -u 设置“上游”

git push origin -u my_new_branch_name

设置“上游”本质上是将您的本地分支“连接”到远程分支,以便获取、拉取和推送之类的东西可以工作。

从远程删除旧分支

git push origin -D <old_name>

您的本地分支机构已经消失,因为您在第一步中“移动”了它。

于 2017-12-08T01:15:25.103 回答
1

好的,在本地远程重命名分支非常容易!...

如果你在分支上,你可以很容易地做到:

git branch -m <branch>

或者如果没有,您需要执行以下操作:

git branch -m <your_old_branch> <your_new_branch>

然后,像这样将删除推送到远程:

git push origin <your_old_branch>

现在你完成了。

如果您在尝试推送时遇到上游错误,只需执行以下操作:

git push --set-upstream origin <your_new_branch>

我还创建了下面的图像以显示真实命令行上的步骤。只需按照以下步骤操作即可:

在此处输入图像描述

于 2017-07-03T13:24:30.057 回答
0

您可以执行以下操作:

git -m master master-old #rename current master
git checkout -b master   #create a new branch master
git push -f origin master #force push to master

但是,如果其他人共享此存储库,则强制推送是一个坏主意。强制推送将导致他们的修订历史与新的冲突。

于 2017-08-16T14:04:45.877 回答
0

以下内容可以保存到 shell 脚本中来完成这项工作:

例如:

remote="origin"

if [ "$#" -eq 0 ] # if there are no arguments, just quit
then
    echo "Usage: $0 oldName newName or $0 newName" >&2
    exit 1
elif
    [ "$#" -eq 1 ] # if only one argument is given, rename current branch
then
    oldBranchName="$(git branch | grep \* | cut -d ' ' -f2)" #save current branch name
    newBranchName=$1
else
    oldBranchName=$1
    newBranchName=$2
fi

git branch -m $oldBranchName $newBranchName

git push $remote :$oldBranchName # Delete old branch on remote
git push --set-upstream $remote $newBranchName # Add new branch name on remote and track it

请注意,这里默认的远程名称“origin”是硬编码的。您可以扩展脚本以使其可配置!

然后,此脚本可以与 Bash 别名、Git 别名或例如Sourcetree自定义操作一起使用。

于 2018-04-08T17:51:48.123 回答
0

转到 github.com 或其他任何地方,单击分支,然后重命名它。然后在本地运行这些:

git branch -m <old-branch-name> <new-branch-name>
git fetch origin
git branch -u origin/<new-branch-name> <new-branch-name>
于 2021-04-09T17:44:10.167 回答
-1

我相信关键是意识到您正在执行双重重命名:mastertomaster-oldmaster-newto master

从所有其他答案中,我综合了这个:

doublerename master-new master master-old

我们首先要定义doublerenameBash 函数:

# doublerename NEW CURRENT OLD
#   - arguments are branch names
#   - see COMMIT_MESSAGE below
#   - the result is pushed to origin, with upstream tracking info updated
doublerename() {
  local NEW=$1
  local CUR=$2
  local OLD=$3
  local COMMIT_MESSAGE="Double rename: $NEW -> $CUR -> $OLD.

This commit replaces the contents of '$CUR' with the contents of '$NEW'.
The old contents of '$CUR' now lives in '$OLD'.
The name '$NEW' will be deleted.

This way the public history of '$CUR' is not rewritten and clients do not have
to perform a Rebase Recovery.
"

  git branch --move $CUR $OLD
  git branch --move $NEW $CUR

  git checkout $CUR
  git merge -s ours $OLD -m $COMMIT_MESSAGE

  git push --set-upstream --atomic origin $OLD $CUR :$NEW
}

这类似于历史更改git rebase,因为分支内容完全不同,但不同之处在于客户端仍然可以安全地快进git pull master

于 2016-07-28T15:35:05.067 回答
-5
git update-ref newref oldref
git update-ref -d oldref newref
于 2010-08-10T12:14:27.777 回答