Files
30-seconds-of-code/snippets/view-changes-summary.md
2021-04-06 22:21:04 +03:00

421 B

title, tags
title tags
View a summary of changes between two commits repository,branch,intermediate

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
git shortlog <commit>..<other-commit>
git shortlog 3050fc0de..HEAD
# Duck Quacking (2):
#      Fix network bug
#      Update documentation