1、将远程主机的最新内容拉到本地 自动 merge
git pull = git fetch + git merge
2、git pull 和 git pull --rebase 区别
merge 会创建一个新的 commit,如果合并时遇到了冲突,需要解决冲突后重新 commit。
rebase 会将两个分支进行合并,同时合并之前的 commit 历史。,
// 如果出现冲突
git add
git rebase --continue