Show Detail All Changes In A Git Log

[Solved] Show Detail All Changes In A Git Log | Shell - Code Explorer | yomemimo.com
Question : show detail all changes in a git log

Answered by : kwams-ahortor

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.

Source : | Last Update : Sun, 12 Sep 21

Answers related to show detail all changes in a git log

Code Explorer Popular Question For Shell