Files
30-seconds-of-code/git/snippets/view-changes-summary.md
2023-05-01 22:28:09 +03:00

571 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
View a summary of changes between two commits snippet
repository
branch
chalarangelo taking-photos 2021-04-13T21:10:59+03:00

Prints a summary of changes between two given commits.

  • Use git shortlog <commit>..<other-commit> to view a summary of changes between the two given commits.
  • Use arrow keys to navigate, press Q to exit.
git shortlog <commit>..<other-commit>
git shortlog 3050fc0de..HEAD
# Duck Quacking (2):
#      Fix network bug
#      Update documentation