Skip to content
Snippets Groups Projects

git part 3

Merged Laurent Heirendt requested to merge lh-git-part-3 into develop
Files
3
# How do I start working on a repository?
You have to `clone` it first:
You have to `clone` your fork first:
```bash
$ git clone ssh://git@gitlab.lcsb.uni.lu:8022/R3/school/git/basic-practice-pages.git
$ git clone ssh://git@gitlab.lcsb.uni.lu:8022/<first.last>/basic-practice-pages.git
```
If you did not configure your SSH key, clone using HTTPS:
```bash
$ git clone https://gitlab.lcsb.uni.lu/R3/school/git/basic-practice-pages
$ git clone https://gitlab.lcsb.uni.lu/<first.last>/basic-practice-pages
```
You will be prompted to enter your credentials.
Upstream (original) repository: https://gitlab.lcsb.uni.lu/R3/school/git/basic-practice-pages.git
\ No newline at end of file
Loading