22
0
Fork 0

name-only

This commit is contained in:
pdiogoantunes 2018-01-22 15:21:50 +01:00
parent 148d4bea3e
commit c2a747317e
1 changed files with 7 additions and 0 deletions

View File

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