📜  详细显示 git 日志中的所有更改 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:25.996000             🧑  作者: Mango

代码示例1
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.