git branch

Main Git command for working with branches. More information: https://git-scm.com/docs/git-branch.

git branch --all

git branch --all --contains commit_hash

git branch --show-current

git branch branch_name

git branch branch_name commit_hash

git branch -m old_branch_name new_branch_name

git branch -d branch_name

git push remote_name --delete remote_branch_name