X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-log-script;h=b36c4e95343aeefd436ac5b4a9d80a85ddc6ec56;hb=8bfcd309907b1f612e82477739bbe2b98b5689a4;hp=24d1e83949a8eebb3cf6f8785f681c14ecd1115e;hpb=2b64f88f09ae2169ec85652b46897574e352936d;p=git.git diff --git a/git-log-script b/git-log-script index 24d1e839..b36c4e95 100755 --- a/git-log-script +++ b/git-log-script @@ -1,5 +1,15 @@ #!/bin/sh -. git-sh-setup-script || die "Not a git archive" -revs=$(git-rev-parse --revs-only --default HEAD "$@") -[ "$revs" ] || die "No HEAD ref" -git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less} +# +# Copyright (c) 2005 Linus Torvalds +# + +# This one uses only subdirectory-aware commands, so no need to +# include sh-setup-script. + +revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit +[ "$revs" ] || { + echo >&2 "No HEAD ref" + exit 1 +} +git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | +LESS=-S ${PAGER:-less}