Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Fix git-log-script when HEAD is invalid.
author
Junio C Hamano
<junkio@cox.net>
Thu, 1 Sep 2005 00:11:39 +0000
(17:11 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Thu, 1 Sep 2005 00:11:39 +0000
(17:11 -0700)
It used 'die' without including git-sh-setup-script; since everything
it uses are subdirectory-aware, instead of including the script to
force it to be run from the top, use echo & exit.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-log-script
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
1eb446f
)
diff --git
a/git-log-script
b/git-log-script
index 5716b29941bb5c005d0de63f916708a3fc774e01..b36c4e95343aeefd436ac5b4a9d80a85ddc6ec56 100755
(executable)
--- a/
git-log-script
+++ b/
git-log-script
@@
-1,4
+1,15
@@
#!/bin/sh
#!/bin/sh
+#
+# 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=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit
-[ "$revs" ] || die "No HEAD ref"
-git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}
+[ "$revs" ] || {
+ echo >&2 "No HEAD ref"
+ exit 1
+}
+git-rev-list --pretty $(git-rev-parse --default HEAD "$@") |
+LESS=-S ${PAGER:-less}