Author: Abraham Ukachi
School: La Plateforme_
Project: GIT Begins
Voici les commandes git qui permettent de:
git clone url du repo
git clone https://github.com/abraham-ukachi/git-begins.git
git add fichier
git add README.md
git commit <-m option> message
git commit -m "Initial commit"
git push <-u option> [<branch>]
git push
ou
git push -u origin main
git pull <option> [<url du repo>]
La commande que permet de pull:
git pull
La commande qui permet de créer une branche sur github est la suivante:
git branch nom de la branche
git branch add-create-branch-command
Pour switcher d'une branche a une autre:
git branch checkout nom de la branche
git branch checkout main