From 2864e0fe89a13b38589ef428c1cff4d269ffef46 Mon Sep 17 00:00:00 2001 From: Andrej Rasevic Rasevic <arasevic@terpmail.umd.edu> Date: Thu, 3 Sep 2020 10:40:33 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f68f49..82c00c0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ __NOTE:__ while the origin url will vary and be unique for everyone the upstream `upstream` is a common repository that everyone will be able to `pull` from and add new files and changes to existing files in their own repositories. Your access to this repository is read only - in terms of git commands this is analogous to `git pull`. You can write to your origin repository and this is analagous to `git push`. The flow for the course is we will add new started code for projects/exercises to `upstream` and then to receive them you will issue the following command: `git pull upstream master` . -This command will add the changes in the `upstream` repository to your local compy of your repository. At this point your local repository and your `origin` will be different. You can verify this by running `git status`. You should see something along the lines of your local repository is 1 (or more) commits ahead of origin master. To resolve this you just need to run: +This command will add the changes in the `upstream` repository to your local copy of your repository. At this point your local repository and your `origin` will be different. You can verify this by running `git status`. You should see something along the lines of your local repository is 1 (or more) commits ahead of origin master. To resolve this you just need to run: `git push origin master`. Once that is done your local repository and your remote `origin` will be the same. ### submitting your work -- GitLab