deleting main branch from github repo 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: delete local and remote branch github
git branch -d branch_namegit branch -D branch_name