Git: branch

Create the new branch

$ git checkout -b [branch name]

image.png

Modify a branch name

$ git branch -m [original name] [new name]

$ git branch -m ver1 version1

image.png

Delete a branch

$ git branch -D [branch name]

image.png

Reference: Git