summaryrefslogtreecommitdiff
path: root/git-request-pull.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-06-30 18:29:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-06-30 18:33:30 (GMT)
commit476cc724242e715c150dce0d26d2feabe2dbe5e1 (patch)
tree60da4979ffbe99bf2a79a7291f859bfd96b36023 /git-request-pull.sh
parent21d777f2577a8003d12bdc1c5f3c1ff68750c598 (diff)
downloadgit-476cc724242e715c150dce0d26d2feabe2dbe5e1.zip
git-476cc724242e715c150dce0d26d2feabe2dbe5e1.tar.gz
git-476cc724242e715c150dce0d26d2feabe2dbe5e1.tar.bz2
request-pull: really disable pager
ff06c74 (Improve request-pull to handle non-rebased branches, 2007-05-01) attempted to disable pager when running subcommands in this script, but with a wrong variable. If GIT_PAGER is set, it takes precedence over PAGER. Noticed by Michal Marek. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-request-pull.sh')
-rwxr-xr-xgit-request-pull.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh
index a2cf5b8..ab2dd10 100755
--- a/git-request-pull.sh
+++ b/git-request-pull.sh
@@ -42,8 +42,8 @@ if [ -z "$branch" ]; then
status=1
fi
-PAGER=
-export PAGER
+GIT_PAGER=
+export GIT_PAGER
echo "The following changes since commit $baserev:"
git shortlog --max-count=1 $baserev | sed -e 's/^\(.\)/ \1/'