|
|
|
|
|
by lcall
662 days ago
|
|
I do similarly but my favorite git log ("gl") variant (in a bash script rather than an alias) is: set -eux git log --notes --decorate=full --source --stat --summary -C -M --pretty=fuller $*|less ...so that I can see if there was any revision to a commit after it was first committed, which files were changed and how much, and pass extra parameters if needed. |
|