git-format-patch.shon commit Make git-clone to take long double-dashed origin option (--origin) (98a4fef)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Junio C Hamano
   4#
   5
   6USAGE='[-n | -k] [-o <dir> | --stdout] [--signoff] [--check] [--diff-options] [--attach] <his> [<mine>]'
   7LONG_USAGE='Prepare each commit with its patch since <mine> head forked from
   8<his> head, one file per patch formatted to resemble UNIX mailbox
   9format, for e-mail submission or use with git-am.
  10
  11Each output file is numbered sequentially from 1, and uses the
  12first line of the commit message (massaged for pathname safety)
  13as the filename.
  14
  15When -o is specified, output files are created in <dir>; otherwise
  16they are created in the current working directory.  This option
  17is ignored if --stdout is specified.
  18
  19When -n is specified, instead of "[PATCH] Subject", the first
  20line is formatted as "[PATCH N/M] Subject", unless you have only
  21one patch.
  22
  23When --attach is specified, patches are attached, not inlined.'
  24
  25. git-sh-setup
  26
  27# Force diff to run in C locale.
  28LANG=C LC_ALL=C
  29export LANG LC_ALL
  30
  31diff_opts=
  32LF='
  33'
  34
  35outdir=./
  36while case "$#" in 0) break;; esac
  37do
  38    case "$1" in
  39    -c|--c|--ch|--che|--chec|--check)
  40    check=t ;;
  41    -a|--a|--au|--aut|--auth|--autho|--author|\
  42    -d|--d|--da|--dat|--date|\
  43    -m|--m|--mb|--mbo|--mbox) # now noop
  44    ;;
  45    --at|--att|--atta|--attac|--attach)
  46    attach=t ;;
  47    -k|--k|--ke|--kee|--keep|--keep-|--keep-s|--keep-su|--keep-sub|\
  48    --keep-subj|--keep-subje|--keep-subjec|--keep-subject)
  49    keep_subject=t ;;
  50    -n|--n|--nu|--num|--numb|--numbe|--number|--numbere|--numbered)
  51    numbered=t ;;
  52    -s|--s|--si|--sig|--sign|--signo|--signof|--signoff)
  53    signoff=t ;;
  54    --st|--std|--stdo|--stdou|--stdout)
  55    stdout=t ;;
  56    -o=*|--o=*|--ou=*|--out=*|--outp=*|--outpu=*|--output=*|--output-=*|\
  57    --output-d=*|--output-di=*|--output-dir=*|--output-dire=*|\
  58    --output-direc=*|--output-direct=*|--output-directo=*|\
  59    --output-director=*|--output-directory=*)
  60    outdir=`expr "$1" : '-[^=]*=\(.*\)'` ;;
  61    -o|--o|--ou|--out|--outp|--outpu|--output|--output-|--output-d|\
  62    --output-di|--output-dir|--output-dire|--output-direc|--output-direct|\
  63    --output-directo|--output-director|--output-directory)
  64    case "$#" in 1) usage ;; esac; shift
  65    outdir="$1" ;;
  66    -h|--h|--he|--hel|--help)
  67        usage
  68        ;;
  69    -*' '* | -*"$LF"* | -*'     '*)
  70        # Ignore diff option that has whitespace for now.
  71        ;;
  72    -*) diff_opts="$diff_opts$1 " ;;
  73    *) break ;;
  74    esac
  75    shift
  76done
  77
  78case "$keep_subject$numbered" in
  79tt)
  80        die '--keep-subject and --numbered are incompatible.' ;;
  81esac
  82
  83tmp=.tmp-series$$
  84trap 'rm -f $tmp-*' 0 1 2 3 15
  85
  86series=$tmp-series
  87commsg=$tmp-commsg
  88filelist=$tmp-files
  89
  90# Backward compatible argument parsing hack.
  91#
  92# Historically, we supported:
  93# 1. "rev1"             is equivalent to "rev1..HEAD"
  94# 2. "rev1..rev2"
  95# 3. "rev1" "rev2       is equivalent to "rev1..rev2"
  96#
  97# We want to take a sequence of "rev1..rev2" in general.
  98# Also, "rev1.." should mean "rev1..HEAD"; git-diff users are
  99# familiar with that syntax.
 100
 101case "$#,$1$2" in
 1021,?*..?*)
 103        # single "rev1..rev2"
 104        ;;
 1051,?*..)
 106        # single "rev1.." should mean "rev1..HEAD"
 107        set x "$1"HEAD
 108        shift
 109        ;;
 1101,*)
 111        # single rev1
 112        set x "$1..HEAD"
 113        shift
 114        ;;
 1152,?*..?*)
 116        # not traditional "rev1" "rev2"
 117        ;;
 1182,*)
 119        set x "$1..$2"
 120        shift
 121        ;;
 122esac
 123
 124# Now we have what we want in $@
 125for revpair
 126do
 127        case "$revpair" in
 128        ?*..?*)
 129                rev1=`expr "$revpair" : '\(.*\)\.\.'`
 130                rev2=`expr "$revpair" : '.*\.\.\(.*\)'`
 131                ;;
 132        *)
 133                rev1="$revpair^"
 134                rev2="$revpair"
 135                ;;
 136        esac
 137        git-rev-parse --verify "$rev1^0" >/dev/null 2>&1 ||
 138                die "Not a valid rev $rev1 ($revpair)"
 139        git-rev-parse --verify "$rev2^0" >/dev/null 2>&1 ||
 140                die "Not a valid rev $rev2 ($revpair)"
 141        git-cherry -v "$rev1" "$rev2" |
 142        while read sign rev comment
 143        do
 144                case "$sign" in
 145                '-')
 146                        echo >&2 "Merged already: $comment"
 147                        ;;
 148                *)
 149                        echo $rev
 150                        ;;
 151                esac
 152        done
 153done >$series
 154
 155me=`git-var GIT_AUTHOR_IDENT | sed -e 's/>.*/>/'`
 156headers=`git-repo-config --get format.headers`
 157case "$attach" in
 158"") ;;
 159*)
 160        mimemagic="050802040500080604070107"
 161esac
 162
 163case "$outdir" in
 164*/) ;;
 165*) outdir="$outdir/" ;;
 166esac
 167test -d "$outdir" || mkdir -p "$outdir" || exit
 168
 169titleScript='
 170        /./d
 171        /^$/n
 172        s/^\[PATCH[^]]*\] *//
 173        s/[^-a-z.A-Z_0-9]/-/g
 174        s/\.\.\.*/\./g
 175        s/\.*$//
 176        s/--*/-/g
 177        s/^-//
 178        s/-$//
 179        s/$/./
 180        p
 181        q
 182'
 183
 184process_one () {
 185        perl -w -e '
 186my ($keep_subject, $num, $signoff, $headers, $mimemagic, $commsg) = @ARGV;
 187my ($signoff_pattern, $done_header, $done_subject, $done_separator, $signoff_seen,
 188    $last_was_signoff);
 189
 190if ($signoff) {
 191        $signoff = "Signed-off-by: " . `git-var GIT_COMMITTER_IDENT`;
 192        $signoff =~ s/>.*/>/;
 193        $signoff_pattern = quotemeta($signoff);
 194}
 195
 196my @weekday_names = qw(Sun Mon Tue Wed Thu Fri Sat);
 197my @month_names = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
 198
 199sub show_date {
 200    my ($time, $tz) = @_;
 201    my $minutes = abs($tz);
 202    $minutes = int($minutes / 100) * 60 + ($minutes % 100);
 203    if ($tz < 0) {
 204        $minutes = -$minutes;
 205    }
 206    my $t = $time + $minutes * 60;
 207    my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime($t);
 208    return sprintf("%s %s %d %02d:%02d:%02d %d %+05d",
 209                   $weekday_names[$wday],
 210                   $month_names[$mon],
 211                   $mday, $hour, $min, $sec,
 212                   $year+1900, $tz);
 213}
 214
 215print "From nobody Mon Sep 17 00:00:00 2001\n";
 216open FH, "git stripspace <$commsg |" or die "open $commsg pipe";
 217while (<FH>) {
 218    unless ($done_header) {
 219        if (/^$/) {
 220            $done_header = 1;
 221        }
 222        elsif (/^author (.*>) (.*)$/) {
 223            my ($author_ident, $author_date) = ($1, $2);
 224            my ($utc, $off) = ($author_date =~ /^(\d+) ([-+]?\d+)$/);
 225            $author_date = show_date($utc, $off);
 226
 227            print "From: $author_ident\n";
 228            print "Date: $author_date\n";
 229        }
 230        next;
 231    }
 232    unless ($done_subject) {
 233        unless ($keep_subject) {
 234            s/^\[PATCH[^]]*\]\s*//;
 235            s/^/[PATCH$num] /;
 236        }
 237        if ($headers) {
 238            print "$headers\n";
 239        }
 240        print "Subject: $_";
 241        if ($mimemagic) {
 242            print "MIME-Version: 1.0\n";
 243            print "Content-Type: multipart/mixed;\n";
 244            print " boundary=\"------------$mimemagic\"\n";
 245            print "\n";
 246            print "This is a multi-part message in MIME format.\n";
 247            print "--------------$mimemagic\n";
 248            print "Content-Type: text/plain; charset=UTF-8; format=fixed\n";
 249            print "Content-Transfer-Encoding: 8bit\n";
 250        }
 251        $done_subject = 1;
 252        next;
 253    }
 254    unless ($done_separator) {
 255        print "\n";
 256        $done_separator = 1;
 257        next if (/^$/);
 258    }
 259
 260    $last_was_signoff = 0;
 261    if (/Signed-off-by:/i) {
 262        if ($signoff ne "" && /Signed-off-by:\s*$signoff_pattern$/i) {
 263            $signoff_seen = 1;
 264        }
 265    }
 266    print $_;
 267}
 268if (!$signoff_seen && $signoff ne "") {
 269    if (!$last_was_signoff) {
 270        print "\n";
 271    }
 272    print "$signoff\n";
 273}
 274print "\n---\n\n";
 275close FH or die "close $commsg pipe";
 276' "$keep_subject" "$num" "$signoff" "$headers" "$mimemagic" $commsg
 277
 278        git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary
 279        echo
 280        case "$mimemagic" in
 281        '');;
 282        *)
 283                echo "--------------$mimemagic"
 284                echo "Content-Type: text/x-patch;"
 285                echo " name=\"$commit.diff\""
 286                echo "Content-Transfer-Encoding: 8bit"
 287                echo "Content-Disposition: inline;"
 288                echo " filename=\"$commit.diff\""
 289                echo
 290        esac
 291        git-diff-tree -p $diff_opts "$commit"
 292        case "$mimemagic" in
 293        '')
 294                echo "-- "
 295                echo "@@GIT_VERSION@@"
 296                ;;
 297        *)
 298                echo
 299                echo "--------------$mimemagic--"
 300                echo
 301                ;;
 302        esac
 303        echo
 304}
 305
 306total=`wc -l <$series | tr -dc "[0-9]"`
 307case "$total,$numbered" in
 3081,*)
 309        numfmt='' ;;
 310*,t)
 311        numfmt=`echo "$total" | wc -c`
 312        numfmt=$(($numfmt-1))
 313        numfmt=" %0${numfmt}d/$total"
 314esac
 315
 316i=1
 317while read commit
 318do
 319    git-cat-file commit "$commit" | git-stripspace >$commsg
 320    title=`sed -ne "$titleScript" <$commsg`
 321    case "$numbered" in
 322    '') num= ;;
 323    *)
 324        num=`printf "$numfmt" $i` ;;
 325    esac
 326
 327    file=`printf '%04d-%stxt' $i "$title"`
 328    if test '' = "$stdout"
 329    then
 330            echo "$file"
 331            process_one >"$outdir$file"
 332            if test t = "$check"
 333            then
 334                # This is slightly modified from Andrew Morton's Perfect Patch.
 335                # Lines you introduce should not have trailing whitespace.
 336                # Also check for an indentation that has SP before a TAB.
 337                grep -n '^+\([  ]*      .*\|.*[         ]\)$' "$outdir$file"
 338                :
 339            fi
 340    else
 341            echo >&2 "$file"
 342            process_one
 343    fi
 344    i=`expr "$i" + 1`
 345done <$series