Branch
git branch
Lists the current branch.
git branch --all --verbose
git branch -av
Lists all local branches in the current repository with some additional details about the most recent commit.
git branch [branch-name]
Creates a new branch.
git branch -d [branch-name]
Deletes the specified branch.