Question: What command takes changes from the master branch on the remote repository orgin and merges then to the local checked-out branch?
- `git commit -u origin`
- `git checkout origin`
- `git pull origin master`
- `git push origin master`
Answer: The correct answer of the above question is Option C:`git pull origin master`