Afficher les détails tous les changements dans un journal GIT

git log --stat
#displays modified files, number of lines added/removed and summary line with
#total number of modified fiels
git log -p
#displays modified files, number of lines added/removed and the actual changes
#that have been made.
Kwams