Create the new branch
$ git checkout -b [branch name]
Modify a branch name
$ git branch -m [original name] [new name]
$ git branch -m ver1 version1
Delete a branch
$ git branch -D [branch name]
Reference: Git
$ git checkout -b [branch name]
$ git branch -m [original name] [new name]
$ git branch -m ver1 version1
$ git branch -D [branch name]
Reference: Git