You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
481 B
17 lines
481 B
Au debut:
|
|
Creer un fichier sur votre pc et se mettre dedans clic droit "git bash here"
|
|
git config --global user.name "nom.p"
|
|
git config --global user.email ""
|
|
git clone https://paul-constans.ac-clermont.fr/gitea/laneury.a/basket_arno_mathis_theo.git
|
|
git pull
|
|
|
|
ajouter un fichier dans git:
|
|
git add nom_du_fichier.format (ex:main.py)
|
|
git commit -m "le message que l'on veut OBLIGATOIRE"
|
|
|
|
mettre a jour fichier/serveur:
|
|
git pull
|
|
git push
|
|
|
|
Aide:
|
|
git status #permet de voir ou on en est
|