git clone <URL-dépot>
Exemple :
git clone https://github.com/Matteo-K/PACT.git
git checkout <nom-de-la-branche>
git branch
git branch -r
git remote -v
git remote add <nom-du-remote> <URL-du-dépôt>
Exemple :
git remote add PACT https://github.com/Matteo-K/PACT.git
git remote remove <nom-du-remote>
git pull <nom-du-remote> <nom-de-la-branche>
git fetch <nom-du-remote>
git add nomFichier.extension
git add .
git add -A
git commit -m "Message de commit décrivant les changements"
Pour publier sur github, il faut push un commit soit mettre les fichiers dans le commit. Puis faire le commit. Et enfin faire le push pour qu'il soit accessible à tous.
git push <nom-du-remote> <nom-de-la-branche>
Exemple :
git push PACT main
git push PACT mattéo
git log