Git
Un article de Haypo.
(Différences entre les versions)
Version du 13 avril 2010 à 09:50 (modifier) Haypo (Discuter | Contributions) (→Documentation) ← Différence précédente |
Version du 13 octobre 2011 à 22:12 (modifier) (défaire) Haypo (Discuter | Contributions) (→Voir aussi) Différence suivante → |
||
Ligne 34 : | Ligne 34 : | ||
== Voir aussi == | == Voir aussi == | ||
+ | * [http://whygitisbetterthanx.com/ Why Git is Better than X] | ||
* [http://www.haypocalc.com/blog/index.php/2009/09/02/203-reparer-depot-git-echec-git-svn-dcommit Réparer un dépôt git après l'échec de git svn dcommit] | * [http://www.haypocalc.com/blog/index.php/2009/09/02/203-reparer-depot-git-echec-git-svn-dcommit Réparer un dépôt git après l'échec de git svn dcommit] | ||
* [http://www.haypocalc.com/blog/index.php/2009/09/12/208-git-supprimer-commit-reediter-changelog git : supprimer un commit, rééditer le dernier changelog] (git rebase -i, git commit --amend) | * [http://www.haypocalc.com/blog/index.php/2009/09/12/208-git-supprimer-commit-reediter-changelog git : supprimer un commit, rééditer le dernier changelog] (git rebase -i, git commit --amend) | ||
* [http://www.haypocalc.com/blog/index.php/2008/11/05/172-git-svn Create a git repository of a svn source tree using git-svn] | * [http://www.haypocalc.com/blog/index.php/2008/11/05/172-git-svn Create a git repository of a svn source tree using git-svn] |
Version du 13 octobre 2011 à 22:12
Retour aux articles de programmation
Sommaire |
Numéro de commit
git help rev-parse
- HEAD
- n^ = n-1 (parent)
- n^p = n-p (n-ième parent)
- n~p = n^^^..^p (parent de la p-ième génération)
- n@{p} (p-ième parent ?)
- @{yesterday}, @{1 month 2 weeks 3 days 1 hour 1 second ago}, @{1979-02-26 18:30:00}
- tag
Intervalle :
- « n..p » [n; p] = n, n+1, ..., p-1, p
- « n^! » [n; n] = n..n (n tout seul)
- « n.. » [n; HEAD] = n+1, n+2, ...
svn
- svn cat -r REV chemin <=> git show REV:chemin
- svn export . ~/export <=> git checkout-index -a --prefix=/home/haypo/export/
- N'utilisez pas ~, git checkout-index ne sait pas le remplacer
- Notez bien le / à la fin