culTest
Guest
One of the 25 questions in this topic
How much do you know about Git & GitHub: Branches and Collaboration?
How do you push a local branch called feature to a remote server for the first time?
Answers
git push origin feature
Correct
git upload feature
git push --all
git remote push feature
You must specify the remote, origin, and the branch name.
View all questions with answers