how to change branch name code example
Example 1: rename branch git
git branch -m <new_name>
Example 2: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 3: git change branch name
git branch –m old-name new-name
Example 4: how to change branch name in github
$ git branch -m OLD-BRANCH-NAME NEW-BRANCH-NAME
$ git fetch origin
$ git branch -u origin/NEW-BRANCH-NAME NEW-BRANCH-NAME
Example 5: how to change the name of the branch in git
# Start by switching to the local branch which you want to rename:
git checkout <old_name>
# Rename the local branch by typing:
git branch -m <new_name>
# At this point, you have renamed the local branch.
# If you’ve already pushed the <old_name> branch to the remote repository,
# perform the next steps to rename the remote branch.
# Push the <new_name> local branch and reset the upstream branch:
git push origin -u <new_name>
# Delete the <old_name> remote branch:
git push origin --delete <old_name>
# That’s it. You have successfully renamed the local and remote Git branch.
Example 6: how to change branch name
Rename a local and remote branch in git
Rename your local branch. If you are on the branch you want to rename: git branch -m new-name. ...
Delete the old-name remote branch and push the new-name local branch. git push origin :old-name new-name.
Reset the upstream branch for the new-name local branch. Switch to the branch and then: git push origin -u new-name.