Skip to content

Commit 347577b

Browse files
committed
updated git instructions
1 parent 938b477 commit 347577b

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,5 @@ dmypy.json
119119
*.sublime-workspace
120120
_gsdata_/*
121121

122+
*.csv
123+

source/modules/lesson00/git_setup.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,9 @@ The first thing we have to do is on the GitHub website. You will create a fork o
145145

146146
Before you can do that, you need to create a GitHub account, if you don't have one already. Your gitHub id will be associated with this class' public repo, so it is up to you if you want to use your real name for your gitHub account, or an alias to maintain your privacy.
147147

148-
Once you are logged in to your gitHub account, go to the appropriate class repository here:
148+
Once you are logged in to your gitHub account, go to the class repository here:
149149

150-
https://github.com/UWPCE-PythonCert-ClassRepos
151-
152-
Make sure you find the right repo for YOUR class!
150+
https://github.com/UWPCE-PythonCert-ClassRepos/PythonCert220Assign
153151

154152
Once in the repo for your class, click on the "fork" button in the upper right of the page to create a fork in your gitHub account. You will now have a copy of the class repo, and can then set up your personal machine to connect to that copy.
155153

source/modules/lesson00/git_workflow.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ First make sure you are on the command line "in" your copy of the class repo.
1717

1818
Remember that ``git status`` is your friend -- when in doubt, run that command to see what's going on in your repo.
1919

20-
1. Make sure you are on the correct branch -- though if you never branch, you'll only need to do this once:
20+
1. Make sure you are on the correct branch -- we suggest you never branch, so you'll only need to do this once:
2121

2222
``$ git checkout master``
2323

@@ -92,7 +92,12 @@ After copying you will end up with a structure like this:
9292
- students/yourname/lessons/...
9393
- students/yourname/tests/...
9494

95-
Be sure to copy, not move the files!!!
95+
Be sure to COPY, not move the files!!!
96+
97+
Now, change to your own named directory (the one under students)
98+
and type
99+
100+
```pip install -e lessons```
96101

97102

98103
Now you can do your coding, in your lessons directory, under the appropriate lesson.

0 commit comments

Comments
 (0)