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 ```