how to recover deleteing local branch git code example

Example 1: git delete local branch

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 2: git delete local branch

# HowTo delete multiple git branches on MAC / Linux / Unix environments 
# git branch | grep "<RegXpattern>" | xargs git branch -D
# here's an example to delete multiple branches that starts with "branch"
git branch | grep "branch*" | xargs git branch -D