From 7bfa97d6fa2452d0517c4f820e44033b5a50cd50 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 15 May 2020 21:03:44 +0300 Subject: initial commit --- kiss-changelog | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 kiss-changelog (limited to 'kiss-changelog') diff --git a/kiss-changelog b/kiss-changelog new file mode 100755 index 0000000..ed323d8 --- /dev/null +++ b/kiss-changelog @@ -0,0 +1,11 @@ +#!/bin/sh -e +# Print the git log of the specific package + +case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac + +kiss s "$1" >/dev/null +cd "$(kiss s "$1" | sed 1q)" + +# Pipe to cat so it doesn't automatically paged +# by git. +git log --format='<%as> [%an] %s - %h' . | cat -- cgit v1.2.3