cpt-changelog (323B)
1 #!/bin/sh -e 2 # Print the git log of the specific package 3 4 case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac 5 6 cpt-search "$1" >/dev/null 7 cd "$(cpt-search --single "$1")" 8 9 # Pipe to cat so it doesn't automatically paged 10 # by git. 11 git log --format='<%as> [%an] %s - %h' . | cat