Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Retire git-log.sh (take #4)
author
Junio C Hamano
<junkio@cox.net>
Fri, 14 Apr 2006 19:47:10 +0000
(12:47 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 14 Apr 2006 19:48:45 +0000
(12:48 -0700)
Noticed by Johannes. We do not install it anymore, but still have
been shipping the source, which was crazy.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-log.sh
[deleted file]
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
5cf7e21
)
diff --git
a/git-log.sh
b/git-log.sh
deleted file mode 100755
(executable)
index
c2ea71c
..0000000
--- a/
git-log.sh
+++ /dev/null
@@
-1,15
+0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2005 Linus Torvalds
-#
-
-USAGE='[--max-count=<n>] [<since>..<limit>] [--pretty=<format>] [git-rev-list options]'
-SUBDIRECTORY_OK='Yes'
-. git-sh-setup
-
-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}