--- title: View a summary of changes between two commits tags: repository,branch,intermediate --- Prints a summary of changes between two given commits. - Use `git shortlog ..` to view a summary of changes between the two given commits. - Use arrow keys to navigate, press Q to exit. ```sh git shortlog .. ``` ```sh git shortlog 3050fc0de..HEAD # Duck Quacking (2): # Fix network bug # Update documentation ```