1#!/bin/sh2# Copyright 2005, Ryan Anderson <ryan@michonline.com>3#4# This file is licensed under the GPL v2, or a later version5# at the discretion of Linus Torvalds.67USAGE='<start> <url> [<end>]'8LONG_USAGE='Summarizes the changes between two commits to the standard output,9and includes the given URL in the generated summary.'10SUBDIRECTORY_OK='Yes'11OPTIONS_KEEPDASHDASH=12OPTIONS_SPEC='git request-pull [options] start url [end]13--14p show patch text as well15'1617. git-sh-setup1819GIT_PAGER=20export GIT_PAGER2122patch=23while case "$#" in 0) break ;; esac24do25case "$1" in26-p)27patch=-p ;;28--)29shift; break ;;30-*)31usage ;;32*)33break ;;34esac35shift36done3738base=$139url=$240head=${3-HEAD}4142[ "$base" ] || usage43[ "$url" ] || usage4445baserev=`git rev-parse --verify "$base"^0` &&46headrev=`git rev-parse --verify "$head"^0` || exit4748merge_base=`git merge-base $baserev $headrev` ||49die "fatal: No commits in common between $base and $head"5051branch=$(git ls-remote "$url" \52| sed -n -e "/^$headrev refs.heads./{53s/^.* refs.heads.//54p55q56}")57url=$(git ls-remote --get-url "$url")58if [ -z "$branch" ]; then59echo "warn: No branch of $url is at:" >&260git log --max-count=1 --pretty='tformat:warn: %h: %s' $headrev >&261echo "warn: Are you sure you pushed $head there?" >&262echo >&263echo >&264branch=..BRANCH.NOT.VERIFIED..65status=166fi6768git show -s --format='The following changes since commit %H:6970%s (%ci)7172are available in the git repository at:' $baserev &&73echo " $url $branch" &&74echo &&7576git shortlog ^$baserev $headrev &&77git diff -M --stat --summary $patch $merge_base..$headrev || exit78exit $status