Command to rename branches

This commit is contained in:
Marcello Lamonaca 2021-02-01 18:50:18 +01:00
parent 08d0d523c5
commit 3ab7250564

View file

@ -187,6 +187,7 @@ Its generally recommended creating annotated tags so it's possible to have al
`git branch`: show list of all existing branches (* indicates current)
`git checkout <branch-name>`: change current branch (update HEAD) and update working directory
`git branch -d <branch-name>`: delete specified branch
`git branch -m <old_name> <new_name>`: rename a branch without affecting the branchs history
`git merge <branch-name>`: merges into current branch
`git merge --continue`: continue previous merge after solving a merge conflinct