Git Cheatsheet
Delete branch (local)
Section titled “Delete branch (local)”git branch -d <branch_name>Delete branch (remote)
Section titled “Delete branch (remote)”git push origin --delete <branch_name>Create a branch and switch to it
Section titled “Create a branch and switch to it”git switch -c <branch_name>