Skip to content

Commit 991e982

Browse files
committed
fix references to codefellows in text and urls
1 parent a8974d1 commit 991e982

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

slides_sources/source/session02.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ Let's get to know your fellow students!
4141
Working 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
4545
on GitHub.
4646

4747
You'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

5050
You want to keep your fork up-to-date with that original copy as the class goes
5151
forward.
@@ -79,17 +79,17 @@ This allows you to grab changes made to the repository in these other
7979
locations.
8080

8181
For 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

Comments
 (0)