In other words, you have to work on your own
**fork**.
## How to get a fork?
Browse to the original repository and click on the button `Fork`:


## Time to practice!
Fork the practice repository:
https://git-r3lab.uni.lu/R3school/git.practice
Then, clone your fork to your home directory!
```bash
$ git clone ssh://git@git-r3lab-server.uni.lu:8022/yourUserName/
git.practice.git practice
```
Change to the practice directory with:
```bash
$ cd practice
```
Any other rudimentary method such as
*'I simply download the `.zip` and unzip it - works like a charm!'*
shall **be avoided**!
Why?
## How to update my fork?
As you have your own fork, it will not automatically update once the original repository is update.
 You have to update it yourself!
**More on that later!**