GitHub - Delete a Branch

January 13, 2026

  1. Delete the feature branch locally
git branch -D feature/multi-users

  1. Delete the feature branch from remote

If you already pushed the branch to remote and want to remove it there too:

git push origin --delete feature/multi-users

See also:

GitHub - Create a New Repo

GitHub - Create a New Branch

GitHub - Pull Latest Change

GitHub - Pull Request (Azure DevOps)

GitHub - Chean a Branch

GitHub - Delete a Branch

GitHub - Create a Tag

GitHub - Delete a Tag