how to delete a branch and then pull from git code example
Example 1: 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
Example 2: cmd delete branch
git branch -d yourBranch # delete local branch
git push origin --delete yourBranch # delete branch on repo/push change