git delete local branch force 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 remove local branch

$ git push -d <remote_name> <branch_name>
$ git branch -D <branch_name>

Example 3: remove branch local git

$ git branch -d branch_name
$ git branch -D branch_name

Example 4: remove branch local git

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>