From aa535bda67f733263b6eb08a47760be75be33c54 Mon Sep 17 00:00:00 2001 From: Kelvin Davis <273degreeskelvin@gmail.com> Date: Mon, 30 Apr 2018 14:51:28 +1000 Subject: [PATCH] Minor change to git tutorial. --- tutorials/git_and_github.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/git_and_github.md b/tutorials/git_and_github.md index 5688b16..c1a19d0 100644 --- a/tutorials/git_and_github.md +++ b/tutorials/git_and_github.md @@ -40,7 +40,7 @@ and don't forget to write a nice message about the changes made. **Step 5.** In this step we pull the changes from the remote repository and merge them with ours. Then we push the merged changes back up to the master branch of the origin (the remote repository). ``` -$ git pull remote +$ git pull origin $ git push origin master ```