Delete a local branch from git
May 21, 2019
This will delete a branch locally
git branch -d the_local_branch
This should be safe and will warn you if it hasnt been merged. Use uppercase -D to force delete
May 21, 2019
This will delete a branch locally
git branch -d the_local_branch
This should be safe and will warn you if it hasnt been merged. Use uppercase -D to force delete