Skip to content

Commit 903964f

Browse files
committed
changed git instructions to reflect new dirs
1 parent cab08a9 commit 903964f

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

source/modules/lesson00/assignments.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for activities (ungraded) and the ones for assignments (which are graded).
3434

3535
You will also see a tests directory, that contains automated tests you can run
3636
to verify if your assignment is complete and ready to submit.
37-
You can also lint and run coverage tests, but we're getting to far ahead!
37+
You can also lint and run coverage tests, but we're getting too far ahead!
3838

3939
Remember to create a branch in which to do your work. Then, all you need to do is
4040
save your work in the correct directory. Remember to commit often, with good
@@ -49,4 +49,4 @@ and then create a pull request for master, assigned to your instructor team.
4949

5050
And that's it!
5151

52-
Again, see the Git Workflw page for more details.
52+
Again, see the Git Workflow page for more details.

source/modules/lesson00/git_workflow.rst

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,25 +82,21 @@ Adding a new file
8282

8383
Note that git does not track directories -- you do not have to add a new dir to git -- when you add a new file in that dir, git will track where it is.
8484

85-
Now, you need to copy the lesson files and test files from the lessons directory and the tests directory
86-
to your own directory under students. You will find tests and lessons in the parent directory of your project.
85+
Now, you need to copy the lesson files from the **template_student** directory
86+
to your own directory under students.
8787

88-
Under each of these there is a hirearchy of directories and files, and all these should be copied too.
8988

9089
After copying you will end up with a structure like this:
9190

92-
- students/yourname/lessons/...
93-
- students/yourname/tests/...
91+
- students/yourname/lessonNN/...
9492

95-
Be sure to COPY, not move the files!!!
9693

97-
Now, change to your own named directory (the one under students)
98-
and type
94+
Be sure to COPY, not move the files!!!
9995

100-
```pip install -e lessons```
10196

97+
Now you can do your coding, in your lessonNN directory. You will find directories
98+
for your Python submissions (src), tests (tests) and data (data).
10299

103-
Now you can do your coding, in your lessons directory, under the appropriate lesson.
104100
For this example, that is simply adding a readme file. You can do that with your text editor, or directly on the command line::
105101

106102
cat > README.rst

0 commit comments

Comments
 (0)