Compare commits

..

No commits in common. "d0276b547363236f87fae72fd4f7f2af2266f955" and "fe067c44e7492f0511086a90e0f311489d6d5e37" have entirely different histories.

View file

@ -179,8 +179,7 @@ It's generally recommended creating annotated tags so it's possible to have all
`git branch <branch-name>`: create new branch
`git branch -d|--delete <branch-name>`: delete specified branch
`git branch -m|--move <old_name> <new_name>`: rename a branch without affecting the branch's history
`git switch -c|--create <branch-name>`: create a new branch and switch to it
`git switch --orphan <branch-name>`: create an new un-rooted branch from scratch
`git switch -c <branch-name>`: create a branch and switches to
`git switch <branch-name>`: change current branch (update HEAD) and update working directory
`git merge <branch-name>`: merges into current branch