Signed-off-by: Santi Béjar <sbejar@xxxxxxxxx> --- Documentation/tutorial.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/tutorial.txt b/Documentation/tutorial.txt index 4b7eba3..45abfa5 100644 --- a/Documentation/tutorial.txt +++ b/Documentation/tutorial.txt @@ -211,7 +211,7 @@ at this point the two branches have diverged, with different changes made in each. To merge the changes made in experimental into master, run ------------------------------------------------ -$ git pull . experimental +$ git merge experimental ------------------------------------------------ If the changes don't conflict, you're done. If there are conflicts, @@ -320,10 +320,10 @@ could pull the changes into her master branch: ------------------------------------- $ git checkout master -$ git pull . remotes/bob/master +$ git merge bob/master ------------------------------------- -The last command is a pull from the "bob/master" branch in Alice's +The last command is a merge of the "bob/master" branch in Alice's own repository. Alice could also perform both steps at once with: -- 1.5.0-rc1.GIT - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html