clear branch and checkout git code example
Example 1: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>
Example 2: remove local branch
git branch -d branch_namegit branch -D branch_name
git push <remote_name> --delete <branch_name>
git branch -d branch_namegit branch -D branch_name