diff options
author | Cem Keylan <cem@ckyln.com> | 2020-07-25 11:20:55 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-07-25 11:20:55 +0300 |
commit | 47a3723632b82a0d3caf79dbe8ada1eae60dd976 (patch) | |
tree | 2c41b08502e35378af35fcda7622d3eaab776420 /other/cpt-changelog | |
parent | a80ec35b458ad1616758aff8257d42b3b51ed17e (diff) | |
download | cpt-extra-47a3723632b82a0d3caf79dbe8ada1eae60dd976.tar.gz |
rename to cpt-extra
Diffstat (limited to 'other/cpt-changelog')
-rwxr-xr-x | other/cpt-changelog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/other/cpt-changelog b/other/cpt-changelog new file mode 100755 index 0000000..ed323d8 --- /dev/null +++ b/other/cpt-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 |