X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=git-log-script;h=b36c4e95343aeefd436ac5b4a9d80a85ddc6ec56;hb=f5f2c52bb08a7fc5bde6a7eb6552235df9daca71;hp=317aa9b0d61a29fd3ac4713079233304c1da4c29;hpb=e764b8e8b3c50b131be825532ba26fa346d6586e;p=git.git diff --git a/git-log-script b/git-log-script index 317aa9b0..b36c4e95 100755 --- a/git-log-script +++ b/git-log-script @@ -1,2 +1,15 @@ #!/bin/sh -git-rev-list --pretty 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}