Browse Source

Merge branch 'mv/request-pull-modernize'

* mv/request-pull-modernize:
  request-pull: avoid mentioning that the start point is a single commit
maint
Junio C Hamano 15 years ago
parent
commit
e95a4df460
  1. 8
      git-request-pull.sh

8
git-request-pull.sh

@ -65,11 +65,11 @@ if [ -z "$branch" ]; then @@ -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


Loading…
Cancel
Save