| 123456789101112131415161718 |
- Pour charger un nouveau projet sur GitLab:
- Sur Gitlab:
- Créer le projet
- Dans Git Bash:
- >> cd /path/to/my/repo
- # creer le depot
- git remote add origin http://url/projet.git
- git push -u origin --all # pushes up the repo and its refs for the first time
- git push -u origin --tags # pushes up any tags
- Note: 'origin' est (par convention) le nom du dépot par défaut d'un projet
|