how to clear a branch in git code example
Example 1: git delete local branch
git branch -d test
Example 2: remove branch not published yet
First checkout another branch
git checkout <other branch>
Now delete branch
git branch -D <deleting brach>