aboutsummaryrefslogtreecommitdiff
path: root/other/cpt-changelog
blob: 92a8089bb4870562256bf05cd7ad20c17cb31437 (plain)
1
2
3
4
5
6
7
8
9
10
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

cpt-search "$1" >/dev/null
cd "$(cpt-search --single "$1")"

# Pipe to cat so it doesn't automatically paged
# by git.
git log --format='<%as> [%an] %s - %h' . | cat