diff --git a/README.md b/README.md index 9b06dfc..153db34 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ * [Count unpacked number of objects and their disk consumption.](https://github.com/git-tips/tips#count-unpacked-number-of-objects-and-their-disk-consumption) * [Prune all unreachable objects from the object database.](https://github.com/git-tips/tips#prune-all-unreachable-objects-from-the-object-database) * [Instantly browse your working repository in gitweb.](https://github.com/git-tips/tips#instantly-browse-your-working-repository-in-gitweb) +* [View the GPG signatures in the commit log](https://github.com/git-tips/tips#view-the-gpg-signatures-in-the-commit-log) @@ -653,5 +654,10 @@ git gc --prune=now --aggressive git instaweb [--local] [--httpd=] [--port=] [--browser=] ``` +## View the GPG signatures in the commit log +```sh +git log --show-signature +``` + diff --git a/tips.json b/tips.json index 4d29733..a43fb6d 100644 --- a/tips.json +++ b/tips.json @@ -290,4 +290,7 @@ },{ "title": "Instantly browse your working repository in gitweb.", "tip": "git instaweb [--local] [--httpd=] [--port=] [--browser=]" +},{ + "title": "View the GPG signatures in the commit log", + "tip": "git log --show-signature" }]