How to rename a branch I created ? Not familiar with it but I did not see in the contextual menu a quick way to do that.
Thanks
You can easily change a branch name locally using the command line:
git branch -m <branch>
Rename the current branch to <branch>.
Further reading: https://www.atlassian.com/git/tutorials/using-branches
If you want to rename the remote branch, without losing any metadata, you won't get what you want.
@Rick Fleischerwhat metadata would I lose? Kinda a noob question..
It looks like you're new here. Sign in or register to get started.