如何使用Eclipse重命名git branch名称

时间:2016-04-06 21:18:48

标签: git bitbucket-server

我从origin/feature-BRANCH-NAME创建了一个名为origin/master的远程分支,我不小心输入了错误的分支名称,我想使用Eclipse重命名它。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

来自eclipse:

https://wiki.eclipse.org/EGit/User_Guide#Renaming_an_Existing_Branch

重命名现有分支

  • 从“项目”节点上的“团队”菜单
  • 选择小组>高级>重命名分支...
  • 在分支选择对话框中,选择要重命名的分支
  • 输入新的分支名称,然后单击确定

<强> Using git command line:

# rename a local branch
git branch -m origin/feature-BRANCH-NAM <newname>

<强> How to rename a remote branch?

删除旧分支并使用新名称推送新分支

 # delete the remote branch
 git push origin - -delete <old name>

 # checkout the new branch (after renamed as explained above)
 git checkout <local new branch>

 # push the new branch name
 git push origin <new name>