Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to rename a branch in git

// Make sure you are in the project folder
// 1. go to your branch that you want to rename

$  git branch -m <new_branch_name>


// 2. if you are in the main branch

$  git branch <old_branch_name> <new_branch_name>



// ###  you should check by git command : $ git branch   : to check new branch name
Source by phoenixnap.com #
 
PREVIOUS NEXT
Tagged: #rename #branch #git
ADD COMMENT
Topic
Name
5+9 =