if i delete a remote repo code example
Example 1: git branch delete local and remote
// delete branch locally
git branch -d localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: delete remote git branch
git push --delete remoteName branchName