From c2a747317eb9505e3aa21aa808c5f11cb63c1179 Mon Sep 17 00:00:00 2001 From: pdiogoantunes Date: Mon, 22 Jan 2018 15:21:50 +0100 Subject: [PATCH] name-only --- HowtoGit.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/HowtoGit.md b/HowtoGit.md index cc7ae374..2d903e39 100644 --- a/HowtoGit.md +++ b/HowtoGit.md @@ -187,6 +187,13 @@ $ git log --graph $ git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' ~~~ +Afficher seulement les fichiers modifié : + +~~~ +$ git log --name-only +$ git show --name-only COMMIT +~~~ + On peut notamment combiner toutes ces options dans un alias à mettre dans `.gitconfig` : ~~~