summaryrefslogtreecommitdiff
path: root/git-request-pull.sh
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2010-01-29 14:17:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-01-30 06:26:39 (GMT)
commit10eb00073f07e1c40a17327417aa39cc4cc9c254 (patch)
treee69f6d1299a085fc3e89afbf56cc4b165995c4c7 /git-request-pull.sh
parentb2c2e4c22c6a4fe151f02380d247cf3d9a9d5d1e (diff)
downloadgit-10eb00073f07e1c40a17327417aa39cc4cc9c254.zip
git-10eb00073f07e1c40a17327417aa39cc4cc9c254.tar.gz
git-10eb00073f07e1c40a17327417aa39cc4cc9c254.tar.bz2
request-pull: avoid mentioning that the start point is a single commit
Previously we ran shortlog on the start commit which always printed "(1)" after the start commit, which gives no information, but makes the output less easy to read. Instead of giving the author name of the commit, use the space for committer timestamp to help recipient judge the freshness of the offered branch more easily. Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-request-pull.sh')
-rwxr-xr-xgit-request-pull.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh
index 630cedd..8fd15f6 100755
--- a/git-request-pull.sh
+++ b/git-request-pull.sh
@@ -65,11 +65,11 @@ if [ -z "$branch" ]; then
status=1
fi
-echo "The following changes since commit $baserev:"
-git shortlog --max-count=1 $baserev | sed -e 's/^\(.\)/ \1/'
+git show -s --format='The following changes since commit %H:
-echo "are available in the git repository at:"
-echo
+ %s (%ci)
+
+are available in the git repository at:' $baserev
echo " $url $branch"
echo