You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/modules/lesson00/git_workflow.rst
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,25 +82,21 @@ Adding a new file
82
82
83
83
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.
84
84
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.
87
87
88
-
Under each of these there is a hirearchy of directories and files, and all these should be copied too.
89
88
90
89
After copying you will end up with a structure like this:
91
90
92
-
- students/yourname/lessons/...
93
-
- students/yourname/tests/...
91
+
- students/yourname/lessonNN/...
94
92
95
-
Be sure to COPY, not move the files!!!
96
93
97
-
Now, change to your own named directory (the one under students)
98
-
and type
94
+
Be sure to COPY, not move the files!!!
99
95
100
-
```pip install -e lessons```
101
96
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).
102
99
103
-
Now you can do your coding, in your lessons directory, under the appropriate lesson.
104
100
For this example, that is simply adding a readme file. You can do that with your text editor, or directly on the command line::
0 commit comments