From b54ec84a43a306413302200850262ad38f899160 Mon Sep 17 00:00:00 2001 From: Alexis Ben Miloud--Josselin Date: Fri, 4 Aug 2023 13:57:39 +0200 Subject: [PATCH] =?UTF-8?q?HowtoGit:=20d=C3=A9placer=20outils=20graphiques?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoGit.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/HowtoGit.md b/HowtoGit.md index 0caf4072..c9ce0f67 100644 --- a/HowtoGit.md +++ b/HowtoGit.md @@ -265,21 +265,21 @@ $ git show HEAD~8..HEAD $ git show -p HEAD~8..HEAD ~~~ -On peut voir graphiquement l'historique avec différents outils, par exemple *gitg*, *gitk* ou *tig* : - -~~~ -# apt install gitk gitg tig -$ gitg -$ gitk --all -$ tig -~~~ - Afficher les _commits_ fait par `jdoe` aujourd’hui : ~~~ $ git log --oneline --no-decorate --since 00:00 --author jdoe ~~~ +> On peut voir graphiquement l'historique avec différents outils, par exemple *gitg*, *gitk* ou *tig* : +> +> ~~~ +> # apt install gitk gitg tig +> $ gitg +> $ gitk --all +> $ tig +> ~~~ + ### Modifier l'historique /!\\ Les modifications de l'historique ne doivent avoir lieu que si cela n'a pas été pushé vers un dépôt partagé !