How To Delete Git Branch
Как удалить ветку в git
tl;dr
Удалить локальную ветку:
git branch -D local-branch-name
Удалить ветку в репозитории (в github, gitlab, gitea и тд):
git push origin --delete remote-branch-name
git branch -D local-branch-name
git push origin --delete remote-branch-name