Answers for "show detail all changes in a git log"

1

show detail all changes in a git log

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.
Posted by: Guest on September-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language