Commit | Line | Data |
---|---|---|
53dfac44 | 1 | #!/bin/sh |
ab421d2c RA |
2 | # Copyright 2005, Ryan Anderson <ryan@michonline.com> |
3 | # | |
4 | # This file is licensed under the GPL v2, or a later version | |
5 | # at the discretion of Linus Torvalds. | |
6 | ||
3eb91bfc SN |
7 | USAGE='<start> <url> [<end>]' |
8 | LONG_USAGE='Summarizes the changes between two commits to the standard output, | |
9 | and includes the given URL in the generated summary.' | |
806f36d4 | 10 | SUBDIRECTORY_OK='Yes' |
50ab6558 | 11 | OPTIONS_KEEPDASHDASH= |
133cfaeb JH |
12 | OPTIONS_SPEC='git request-pull [options] start url [end] |
13 | -- | |
14 | p show patch text as well | |
15 | ' | |
16 | ||
806f36d4 | 17 | . git-sh-setup |
ab421d2c | 18 | |
653a31c1 MM |
19 | GIT_PAGER= |
20 | export GIT_PAGER | |
21 | ||
133cfaeb JH |
22 | patch= |
23 | while case "$#" in 0) break ;; esac | |
24 | do | |
25 | case "$1" in | |
26 | -p) | |
27 | patch=-p ;; | |
28 | --) | |
29 | shift; break ;; | |
30 | -*) | |
31 | usage ;; | |
32 | *) | |
33 | break ;; | |
34 | esac | |
35 | shift | |
36 | done | |
37 | ||
c0168147 JH |
38 | base=$1 url=$2 head=${3-HEAD} status=0 branch_name= |
39 | ||
40 | headref=$(git symbolic-ref -q "$head") | |
41 | if git show-ref -q --verify "$headref" | |
42 | then | |
43 | branch_name=${headref#refs/heads/} | |
44 | if test "z$branch_name" = "z$headref" || | |
45 | ! git config "branch.$branch_name.description" >/dev/null | |
46 | then | |
47 | branch_name= | |
48 | fi | |
49 | fi | |
ab421d2c | 50 | |
3c9f1e7c JH |
51 | test -n "$base" && test -n "$url" || usage |
52 | baserev=$(git rev-parse --verify "$base"^0) && | |
53 | headrev=$(git rev-parse --verify "$head"^0) || exit | |
ab421d2c | 54 | |
3c9f1e7c | 55 | merge_base=$(git merge-base $baserev $headrev) || |
ff06c743 SP |
56 | die "fatal: No commits in common between $base and $head" |
57 | ||
3c9f1e7c JH |
58 | find_matching_branch="/^$headrev "'refs\/heads\//{ |
59 | s/^.* refs\/heads\/// | |
60 | p | |
61 | q | |
62 | }' | |
63 | branch=$(git ls-remote "$url" | sed -n -e "$find_matching_branch") | |
1a927775 | 64 | url=$(git ls-remote --get-url "$url") |
ff06c743 | 65 | |
10eb0007 | 66 | git show -s --format='The following changes since commit %H: |
ab421d2c | 67 | |
10eb0007 MV |
68 | %s (%ci) |
69 | ||
cf731666 JH |
70 | are available in the git repository at: |
71 | ' $baserev && | |
72 | echo " $url${branch+ $branch}" && | |
73 | git show -s --format=' | |
74 | for you to fetch changes up to %H: | |
75 | ||
76 | %s (%ci) | |
77 | ||
78 | ----------------------------------------------------------------' $headrev && | |
ab421d2c | 79 | |
c0168147 JH |
80 | if test -n "$branch_name" |
81 | then | |
82 | echo "(from the branch description for $branch local branch)" | |
83 | echo | |
84 | git config "branch.$branch_name.description" | |
85 | echo "----------------------------------------------------------------" | |
86 | fi && | |
53dfac44 | 87 | git shortlog ^$baserev $headrev && |
cf731666 JH |
88 | git diff -M --stat --summary $patch $merge_base..$headrev || status=1 |
89 | ||
90 | if test -z "$branch" | |
91 | then | |
92 | echo "warn: No branch of $url is at:" >&2 | |
93 | git show -s --format='warn: %h: %s' $headrev >&2 | |
94 | echo "warn: Are you sure you pushed '$head' there?" >&2 | |
95 | status=1 | |
96 | fi | |
ff06c743 | 97 | exit $status |