diff --git a/Git/git.md b/Git/git.md index ca929e9..d4220cb 100644 --- a/Git/git.md +++ b/Git/git.md @@ -187,6 +187,7 @@ It’s generally recommended creating annotated tags so it's possible to have al `git branch`: show list of all existing branches (* indicates current) `git checkout `: change current branch (update HEAD) and update working directory `git branch -d `: delete specified branch +`git branch -m `: rename a branch without affecting the branch’s history `git merge `: merges into current branch `git merge --continue`: continue previous merge after solving a merge conflinct