git pull
OU
git fetch
git checkout HEAD
Si le projet existe déjà en local, il suffit de le mettre à jour.
Sinon, il faut "cloner" le projet (un nouveau dossier est créé) :
git clone https://github.com/SevillanoRobin/Projet-2048-Behm-Richez-Sevillano.git
Si un répertoire pour le projet existe déjà, il est possible de l'utiliser :
(git init)
git remote add origin https://github.com/SevillanoRobin/Projet-2048-Behm-Richez-Sevillano.git
git fetch
git branch -u origin/master
git checkout -b [nom de la branche]
OU
git branch [nom de la branche]
git checkout [branche]
git checkout [branche]
git branch -mv [nouveau nom]
git push -u origin [nom de la branche]
git branch -d [branche]