Dombi Soma
Dombi Soma

Reputation: 745

How can I rename my branch from TortoiseGit?

I know the way to rename branch from command line, but - since I'm using TortoiseGit - I'm curious if there are any options to do such thing.

Thanks for the answers :)

Upvotes: 53

Views: 30907

Answers (3)

Harmelodic
Harmelodic

Reputation: 6139

In a File Manager, Open your Project root directory (where your .git folder is found).

Right click and go to:

TortoiseGit > Switch/Checkout

Ensure the Switch To Option to Branch. Then click the little button to the side of the drop down menu that is denoted by ...

enter image description here

A window will pop up showing the list of branches for you to choose.
Click on the one you want to rename.

Hit F2.

Rename your branch.

enter image description here

Hit Enter. Click OK.

Now in the drop down menu, you'll find that the branch-name has been updated.

Upvotes: 62

Aspak Rogatiya
Aspak Rogatiya

Reputation: 169

If you want to rename just the local branch, you can refer to other answers. Please follow these steps to rename local and remote branch.

  1. Right click the repository -> TortoiseGit -> Browse References.

enter image description here

  1. Select the branch you want to rename and hit F2 button and type a new name. The branch is now been renamed locally.

enter image description here

  1. Right click the renamed branch and select "switch/checkout to this.."

enter image description here

  1. Now right click the repository and select "Git Commit -> "renamed branch"

enter image description here

  1. Git commit window will open. Type a commit message and tick the checkbox "Message Only" in the bottom left corner, and then click "Commit & Push"

enter image description here

Press the upvote button if this answer has helped you.

Upvotes: 3

MrTux
MrTux

Reputation: 34003

If you want to rename a branch which is not the current branch, open the Reference Browser using the context menu of a versioned folder (you might need to hold the Shift key when opening it).

enter image description here

select the branch you want to rename and then press F2 (or select rename in the context menu).

enter image description here

See https://tortoisegit.org/docs/tortoisegit/tgit-dug-browse-ref.html

Upvotes: 23

Related Questions