git pull = git fetch + git merge against tracking upstream branch
git pull --rebase = git fetch + git rebase against tracking upstream branch
If you want to know how git merge and git rebase differ, read this.
git pull = git fetch + git merge against tracking upstream branch
git pull --rebase = git fetch + git rebase against tracking upstream branch
If you want to know how git merge and git rebase differ, read this.