how can i deletea branch in git code example
Example 1: delete local branch git
git branch -d <branch_name>
Example 2: git delete remote branches in local git
# Fetch changes from all remotes and locally delete
# remote deleted branches/tags etc
# --prune will do the job :-;
git fetch --all --prune