Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
You are using Git for version control in a project that involves multiple developers. Which of the following Git commands would you use to clone a remote repository, create a new branch, and push changes to the remote repository?
A
git clone ; git checkout -b new-feature; git push origin new-feature
B
git pull ; git branch new-feature; git push origin new-feature
C
git clone ; git branch new-feature; git push origin new-feature
D
git pull ; git checkout -b new-feature; git push origin new-feature