diff --git a/0-Setup.md b/0-Setup.md index 5bcc1fc241ff4f33ef970b23e0f67c6d963114d7..41491d5d12f72a777905304457875cdd81bd52a0 100644 --- a/0-Setup.md +++ b/0-Setup.md @@ -48,9 +48,19 @@ GitLab creates your fork, and redirects you to the new fork’s page. The `main` branch stores the official release history, and the `develop` branch serves as an integration branch for features. The Project leader creates a `develop` branch locally and push it to the server: +* Using SSH if utilizing Ethernet connection: ```bash -git clone git@gitlab.com:[namespace]/scoring.git +git clone git@serveur-gitlab.lisn.upsaclay.fr:[namespace]/scoring.git cd scoring +``` + +* Using HTTPS if utilizing Wifi connection: +```bash +git clone https://gitlab.lisn.upsaclay.fr/[namespace]/scoring.git +cd scoring +``` + +```bash git branch develop git push -u origin develop ``` @@ -68,8 +78,16 @@ Now, add your collaborators to the project: ## Cloning the repository for collaborators: 1. Clone the repository + +* Using SSH if utilizing Ethernet connection: +```bash +git clone git@serveur-gitlab.lisn.upsaclay.fr:[namespace]/scoring.git +cd scoring +``` + +* Using HTTPS if utilizing Wifi connection: ```bash -git clone git@gitlab.com:[namespace]/scoring.git +git clone https://gitlab.lisn.upsaclay.fr/[namespace]/scoring.git cd scoring ```