Git show: display commit information


Warning: Undefined array key "socialize_RedditWidget" in /home/phpacd/websites/shkodenko.com/wp-content/plugins/socialize/frontend/socialize-services.php on line 166

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.