Problem Statement
Which command deletes a branch named `feature/login` on the `origin` remote?
Explanation
Pushing an empty ref (`:<name>`) deletes the remote branch. Modern alternative: `git push origin --delete feature/login`.
Practice Sets
This question appears in the following practice sets:
