Git - Remote Repositories
Which of the following is the recommended modern syntax to delete a remote branch named
bugfix?bugfix?git push origin --delete branch-name.--delete flag. git push origin --remove bugfix uses a non-existent flag --remove. git branch -r -d bugfix deletes local remote-tracking branches, not remote branches.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions