Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.25 KB

commands-git.md

File metadata and controls

70 lines (47 loc) · 1.25 KB

commands-git

Author: Abraham Ukachi
School: La Plateforme_
Project: GIT Begins

Voici les commandes git qui permettent de:

Cloner un repo

git clone url du repo

git clone https://github.com/abraham-ukachi/git-begins.git

Les 3 commandes de push (dans l'ordre)

1ère commande de push

git add fichier

git add README.md

2ème commande de push

git commit <-m option> message

git commit -m "Initial commit"

3ème commande de push

git push <-u option> [<branch>]

git push

ou

git push -u origin main

La commande de pull

git pull <option> [<url du repo>]

La commande que permet de pull:

git pull

Creation de branche

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