how to remove remove branch from local machine code example
Example 1: remove branch local git
$ git branch -d branch_name
$ git branch -D branch_name
Example 2: remove branch local git
$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>