summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-02-21 11:59:17 -0800
committerJunio C Hamano <gitster@pobox.com>2010-02-21 11:59:17 -0800
commite95a4df460003dd437bde141e6d6b3ce39546412 (patch)
treeb61f1ec0b03991c80e92ccf95b0fef276edc367d
parent1958e5be90be7bba3037b8a7853f0fb64f24fc09 (diff)
parent10eb00073f07e1c40a17327417aa39cc4cc9c254 (diff)
downloadgit-e95a4df460003dd437bde141e6d6b3ce39546412.tar.gz
Merge branch 'mv/request-pull-modernize'
* mv/request-pull-modernize: request-pull: avoid mentioning that the start point is a single commit
-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 630ceddf03..8fd15f6df4 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