Git show: display commit information

To display changes in the particular commit you can use the following command:

# git show COMMIT_HASH

You can find commit hash using one of the following commands:

# git log

… or by commit message text:

# git log --all --grep="commit comment message"

You can also find more information in git show documentation.