1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-07-26 04:21:34 +02:00

Linux/git: Added guide to show commit info

This commit is contained in:
2026-07-17 01:41:37 +02:00
parent b3009233d8
commit ea19f91755

View File

@@ -25,8 +25,22 @@ This section addresses various use cases of git.
There is also an interactive There is also an interactive
[fix-up guide by Seth Robertson](https://sethrobertson.github.io/GitFixUm/fixup.html). [fix-up guide by Seth Robertson](https://sethrobertson.github.io/GitFixUm/fixup.html).
Robertson also made guides on [post-production](https://github.com/SethRobertson/GitPostProduction) It can help to find the command needed to correct a specific situation of a git repository.
and [best practices](http://sethrobertson.github.io/GitBestPractices). Robertson also made guides on
[post-production](https://sethrobertson.github.io/GitPostProduction/gpp.html) and a guide on
[best practices](http://sethrobertson.github.io/GitBestPractices).
### Show Commit Information
To explicitly display all informations corresponding to a given commit hash `<hash>` run the
following command.
```sh
git show --format=full <hash>
```
Apart from the diff it will also display the author including their mail, the complete commit hash
and the whole commit message.
### Modify a Commit Already Done ### Modify a Commit Already Done