Forked from
R3 / school / courses
1054 commits behind the upstream repository.
-
Laurent Heirendt authoredLaurent Heirendt authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
cloneRepo.md 862 B
How do I start working on a repository?
You have to clone
it first:
$ git clone git@github.com:userName/myRepo.git myRepo
If you did not configure your SSH key, clone using HTTPS: ```bash $ git clone https://github.com/userName/myRepo.git myRepo ```
You will be prompted to enter your credentials.
```bash $ git clone ssh://git@git-r3lab-server.uni.lu:8022/R3.training/ git.practice.git practice ```
Any other rudimentary method such as
Why?
Time to practice!
(Live Demo)
Clone the practice repository:
https://git-r3lab.uni.lu/R3.training/git.practice
```bash $ git clone ssh://git@git-r3lab-server.uni.lu:8022/R3.training/ git.practice.git practice ```
Any other rudimentary method such as
'I simply download the .zip
and unzip it - works like a charm!'
shall be avoided!
Why?