git init
git config –global user.name « toto
git config –global user.email « toto@toto.com »
git add monnouveaufichier.txt
ou git add *
git status -> pour controle
git commit -m « message »
git log -> liste les commit avec leurs ID
git checkout ID -> remettre l’état de l’ID
git checkout master -f -> retour à la dernière version écrase les modif
git branch
git branch nouvellebranche
git checkout master
git merge nouvellebranche
git branch -d nombranche
git remote add origin https://…. toto.git
git remote -> controle
git push -u origin master -> envoyer vers distant
git pull -u origin master -> récupérer distant