diff options
-rw-r--r-- | git.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git.html.markdown b/git.html.markdown index 4d4b2a4e..47bac3ba 100644 --- a/git.html.markdown +++ b/git.html.markdown @@ -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 ``` |