diff options
| author | Junio C Hamano <gitster@pobox.com> | 2009-06-30 16:12:35 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2009-06-30 16:12:35 -0700 |
| commit | 725cf7b45da1f983fa1cbb0757b0e8855e5ac2de (patch) | |
| tree | 7ea146277466418c86f2feb141523e875d18e657 /git-request-pull.sh | |
| parent | 6167c136579f17066e985a8bf7d9c020878b9a3e (diff) | |
| parent | d4c985653a580e78db94c549bdcd71669067b8a9 (diff) | |
| download | git-725cf7b45da1f983fa1cbb0757b0e8855e5ac2de.tar.xz | |
Merge branch 'maint'
* maint:
attr: plug minor memory leak
request-pull: really disable pager
Makes some cleanup/review in gittutorial
Makefile: git.o depends on library headers
git-submodule documentation: fix foreach example
Diffstat (limited to 'git-request-pull.sh')
| -rwxr-xr-x | git-request-pull.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh index a2cf5b8215..ab2dd10498 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/' |
