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` : ~~~