Показать подробности все изменения в журнале 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