how to remove current branch code example
Example 1: delete a branch in git
// delete branch locally
git branch -d localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: git delete branch
## Deleting local branch; branch is not fully merged
git branch -D feature/login