git branch
Lists all remote branchesgit branch -r
Lists all local and remote branchesgit branch -a
Creates new branch login
to work on login functionality on the branchgit branch login
Shows branches that are merged alreadygit branch --merged
Deletes the login
branchgit branch -d login
Deletes the login
branch (with force mode, which means - the branch will be deleted, even if it's not fully mergedgit branch -D login