Skip to content

Instantly share code, notes, and snippets.

@yvan-sraka
Created January 17, 2017 10:19
Show Gist options
  • Save yvan-sraka/fa6091e3eea1f9591f24712140be271c to your computer and use it in GitHub Desktop.
Save yvan-sraka/fa6091e3eea1f9591f24712140be271c to your computer and use it in GitHub Desktop.

----- Git -----

OUTILS : Logiciel de versionning

Pour obtenir de l'aide : man git

MEMENTO commandes Git :

status : Savoir ce que se passe init : Créer un repository add : Ajouter un fichier au suivi de git commit : Créer une version log : Afficher l'historique show : Afficher le contenu d'un commit revert : Applique le commit inverse

checkout : Revenir à une ancienne version (WARNING : detached) reset : ATTENTION

Rappels LINUX :

Les fichiers et dossiers qui commencent par un . sont des fichiers et dossiers cachés et souvent stockent des paramètres de configuration

POSIX : Norme pour les options des programmes : -o --option

ETAT d'un fichier sous Git :

Untrack (par défaut) Modified (après edition) Staged (après ajout) Commit (après commit)

UN COMMIT C'EST JUSTE UNE VERSION (de notre dépôt)

ALTERNATIVES :

Centralisés :

svn cvs

Décentralisés :

git (Linus Torvald) mercurial (hg)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment