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

  1. `git commit -u origin`
  2. `git checkout 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`