culTest

    One of the 25 questions in this topic

    How much do you know about Git & GitHub: Branches and Collaboration?

    Which command deletes a branch from the remote server, GitHub?

    Answers

    git push origin --delete <name>Correct
    git remote rm <name>
    git delete-remote <name>
    git rm -rf <name>

    You use push while telling the remote to perform the delete action.