@@ -41,11 +41,11 @@ Let's get to know your fellow students!
4141Working with an Upstream
4242------------------------
4343
44- You've created a fork of the class repository from the ``codefellows `` account
44+ You've created a fork of the class repository from the ``UWPCE-PythonCert `` account
4545on GitHub.
4646
4747You've pushed your own changes to that fork, and then issued pull requests to
48- have that worked merged back to the ``codefellows `` original.
48+ have that worked merged back to the ``UWPCE-PythonCert `` original.
4949
5050You want to keep your fork up-to-date with that original copy as the class goes
5151forward.
@@ -79,17 +79,17 @@ This allows you to grab changes made to the repository in these other
7979locations.
8080
8181For our class, we will add an *upstream * remote to our local copy that points
82- to the original copy of the material in the ``codefellows `` account.
82+ to the original copy of the material in the ``UWPCE-PythonCert `` account.
8383
8484.. code-block :: bash
8585
86- $ git remote add upstream https://github.com/codefellows/sea-f2-python-sept14 .git
86+ $ git remote add upstream https://github.com/UWPCE-PythonCert/IntroToPython .git
8787
8888 $ git remote -v
8989 origin https://github.com/PythonCHB/sea-f2-python-sept14.git (fetch)
9090 origin https://github.com/PythonCHB/sea-f2-python-sept14.git (push)
91- upstream https://github.com/codefellows/sea-f2-python-sept14 .git (fetch)
92- upstream https://github.com/codefellows/sea-f2-python-sept14 .git (push)
91+ upstream https://github.com/UWPCE-PythonCert/IntroToPython .git (fetch)
92+ upstream https://github.com/UWPCE-PythonCert/IntroToPython .git (push)
9393
9494 .. nextslide :: Fetching Everything.
9595
@@ -136,7 +136,7 @@ Then, fetch the upstream master branch and merge it into your master:
136136.. code-block :: bash
137137
138138 $ git fetch upstream master
139- From https://github.com/codefellows/sea-f2-python-sept14
139+ From https://github.com/UWPCE-PythonCert/IntroToPython
140140 * branch master -> FETCH_HEAD
141141
142142 $ git merge upstream/master
0 commit comments