keywords: git pull与git fetch的用法

命令

git pull origin master

等价于

git fetch origin master
git merge origin/master