- Delete the feature branch locally
git branch -D feature/multi-users
- 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
January 13, 2026
git branch -D feature/multi-users
If you already pushed the branch to remote and want to remove it there too:
git push origin --delete feature/multi-users