From 1cde458164fe5cf07dda51d7f869b06a99641558 Mon Sep 17 00:00:00 2001 From: "Hemanth.HM" Date: Wed, 6 Apr 2016 18:57:11 +0530 Subject: [PATCH] GPG sig in logs --- README.md | 6 ++++++ tips.json | 3 +++ 2 files changed, 9 insertions(+) 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" }]