Skip to content
Snippets Groups Projects
Commit 0323c3dc authored by Ingmar Schubert's avatar Ingmar Schubert
Browse files

Update README

parent 6a9dd2bd
No related branches found
No related tags found
No related merge requests found
...@@ -7,8 +7,7 @@ This assignment only contains a simple test task. You should use it to set up yo ...@@ -7,8 +7,7 @@ This assignment only contains a simple test task. You should use it to set up yo
To install `git`, please follow the instructions here: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git. To install `git`, please follow the instructions here: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git.
## Ex. 0.2: Fork this repo and clone it from your own git repository ## Ex. 0.2: Fork this repo and clone it from your own git repository
If you can directly fork on this gitlab, do the following: 1. Click the 'fork' button on top right of the gitlab webpage to create your own fork of this repo on this gitlab.
1. If you can directly fork on this gitlab, click the 'fork' button on top right of the gitlab webpage to create your own fork of this repo on this gitlab. If you cannot directly fork on this gitlab, see the instructions below.
2. Open a bash shell and navigate to a folder of your choice. The folder containing this repo will become a subfolder of this folder. 2. Open a bash shell and navigate to a folder of your choice. The folder containing this repo will become a subfolder of this folder.
3. Clone the repo using `git clone YOURFORK`. Here, `YOURFORK` is the URL of your fork of this repo. For example, if you forked directly on this gitlab, it will look like this: `git@git.tu-berlin.de:YOUR_USER_NAME/PATH/TO/REPO.git` 3. Clone the repo using `git clone YOURFORK`. Here, `YOURFORK` is the URL of your fork of this repo. For example, if you forked directly on this gitlab, it will look like this: `git@git.tu-berlin.de:YOUR_USER_NAME/PATH/TO/REPO.git`
``` ```
...@@ -33,7 +32,7 @@ Send an E-Mail to ingmar.schubert@tu-berlin.de containing the following: ...@@ -33,7 +32,7 @@ Send an E-Mail to ingmar.schubert@tu-berlin.de containing the following:
4. The URL of your repo, i.e. `YOURFORK`. 4. The URL of your repo, i.e. `YOURFORK`.
## Ex. 0.5: Open assignment ## Ex. 0.5: Open assignment
Throughout this course, each assignment will be given as a subfolder of `ai-student-workspace`. For example, the assignment subfolder for the present assignment is `00-test-setup`. Inside each assignment subfolder, you will find Throughout this course, each assignment will be given as a subfolder of `ai-student-workspace`. For example, the assignment subfolder for the present assignment is `00`. Inside each assignment subfolder, you will find
1. Files containing code that you **should not edit** 1. Files containing code that you **should not edit**
2. One `README.md` that explains the task 2. One `README.md` that explains the task
3. One single file that you should edit according to the task. For the present assignment, this file is called `solution_00.py`. For later assignments, these files will be called `solution_01.py`, `solution_02.py`, and so on. **This is the only file that should be edited**. 3. One single file that you should edit according to the task. For the present assignment, this file is called `solution_00.py`. For later assignments, these files will be called `solution_01.py`, `solution_02.py`, and so on. **This is the only file that should be edited**.
...@@ -56,7 +55,7 @@ from module_1 import is_positive, is_even ...@@ -56,7 +55,7 @@ from module_1 import is_positive, is_even
## Ex. 0.7: Stage, commit, and push your solution ## Ex. 0.7: Stage, commit, and push your solution
Once you are finished, *stage* your changes using Once you are finished, *stage* your changes using
``` ```
cd ai-student-workspace/00-test-setup cd ai-student-workspace/00
git add solution_00.py git add solution_00.py
``` ```
Then *commit* your changes using Then *commit* your changes using
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment