Question: What command takes changes from the master branch on the remote repository origin and merges them to the local checked-out branch?

  1. git checkout origin
  2. git commit -u origin
  3. git pull origin master
  4. git push origin master

Answer: The correct answer of the above question is Option C:git pull origin master