delete a branch on git using command line 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: delete git branch
We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.
$ git branch -d <branchname>
Example 3: git remove local branch
$ git push -d <remote_name> <branch_name>
$ git branch -D <branch_name>