Git - Remote Repositories
How can you delete the remote branches
alpha, beta, and gamma in a single Git command?alpha, beta, and gamma in a single Git command?git push origin --delete followed by the branch names.--delete. git push origin :alpha :beta :gamma uses the older syntax but does not support multiple branches in one command. git branch -d alpha beta gamma deletes local branches. git remote remove alpha beta gamma removes remotes, not branches.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions