GIT - Commandes utiles : Différence entre versions
De PedroWiki
(Page créée avec « = Liens utiles = * Branches: [https://git-scm.com/book/fr/v1/Les-branches-avec-Git-Gestion-de-branches Les branches avec Git]. Category:Howto Category:Git ») |
|||
Ligne 2 : | Ligne 2 : | ||
* Branches: [https://git-scm.com/book/fr/v1/Les-branches-avec-Git-Gestion-de-branches Les branches avec Git]. | * Branches: [https://git-scm.com/book/fr/v1/Les-branches-avec-Git-Gestion-de-branches Les branches avec Git]. | ||
+ | |||
+ | = Cloner un dépôt = | ||
+ | |||
+ | git clone <lien SSH ou HTTPS de clonage du projet> | ||
+ | |||
+ | = Changer de branche vers une branche existante en local = | ||
+ | |||
+ | git checkout <nombranche> | ||
+ | |||
+ | = Mettre à jour son repo local = | ||
+ | |||
+ | git pull | ||
+ | |||
+ | = Connaitre sa branche locale = | ||
+ | |||
+ | git branch | ||
+ | |||
+ | = Créer une branche de travail = | ||
+ | |||
+ | git checkout -b "<nomdelabranche>" | ||
+ | |||
+ | = Ajouter / prendre en compte ses modifications = | ||
+ | |||
+ | == Connaitre le status == | ||
+ | |||
+ | git status | ||
+ | |||
+ | == Ajouter / prendre en compte = | ||
+ | |||
+ | git add <nom_fichier_ou_dossier> | ||
+ | |||
+ | ou plus brutal | ||
+ | |||
+ | git add . | ||
+ | |||
+ | = Committer = | ||
+ | |||
+ | git commit -m "<messagedecommit>" | ||
+ | |||
+ | = Push vers le repo distant = | ||
+ | |||
+ | Pour les fainéants: | ||
+ | |||
+ | git push | ||
+ | |||
+ | Dans ses recommandations, git fournit en général la ligne de commande appropriée pour pousser vers l'origin. | ||
+ | |||
+ | git push | ||
[[Category:Howto]] | [[Category:Howto]] | ||
[[Category:Git]] | [[Category:Git]] |
Version du 4 juin 2021 à 13:07
Sommaire
- 1 Liens utiles
- 2 Cloner un dépôt
- 3 Changer de branche vers une branche existante en local
- 4 Mettre à jour son repo local
- 5 Connaitre sa branche locale
- 6 Créer une branche de travail
- 7 Ajouter / prendre en compte ses modifications
- 8 = Ajouter / prendre en compte
- 9 Committer
- 10 Push vers le repo distant
Liens utiles
- Branches: Les branches avec Git.
Cloner un dépôt
git clone <lien SSH ou HTTPS de clonage du projet>
Changer de branche vers une branche existante en local
git checkout <nombranche>
Mettre à jour son repo local
git pull
Connaitre sa branche locale
git branch
Créer une branche de travail
git checkout -b "<nomdelabranche>"
Ajouter / prendre en compte ses modifications
Connaitre le status
git status
= Ajouter / prendre en compte
git add <nom_fichier_ou_dossier>
ou plus brutal
git add .
Committer
git commit -m "<messagedecommit>"
Push vers le repo distant
Pour les fainéants:
git push
Dans ses recommandations, git fournit en général la ligne de commande appropriée pour pousser vers l'origin.
git push