Fix git pull --rebase explanation (#2262)

This commit is contained in:
Danijar Hafner 2016-05-18 18:05:13 +02:00 committed by ven
parent 4310633b36
commit 1c3de94e76

View File

@ -396,8 +396,8 @@ $ git pull origin master
$ git pull
# Merge in changes from remote branch and rebase
# branch commits onto your local repo, like: "git pull <remote> <branch>, git
# rebase <branch>"
# branch commits onto your local repo, like: "git fetch <remote> <branch>, git
# rebase <remote>/<branch>"
$ git pull origin master --rebase
```