Skip to content
Snippets Groups Projects
Commit e718aa49 authored by Van-Tuan Bui's avatar Van-Tuan Bui
Browse files

Update 0-Setup.md

parent cdf7fe62
No related branches found
Tags v1.0
No related merge requests found
......@@ -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
```
......
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