git-rebase.shon commit git-rebase: Usage string clean-up, emit usage string at incorrect invocation (3ae39ab)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Junio C Hamano.
   4#
   5
   6USAGE='<upstream> [<head>]'
   7. git-sh-setup
   8
   9# Make sure we do not have .dotest
  10if mkdir .dotest
  11then
  12        rmdir .dotest
  13else
  14        echo >&2 '
  15It seems that I cannot create a .dotest directory, and I wonder if you
  16are in the middle of patch application or another rebase.  If that is not
  17the case, please rm -fr .dotest and run me again.  I am stopping in case
  18you still have something valuable there.'
  19        exit 1
  20fi
  21
  22# The other head is given.  Make sure it is valid.
  23other=$(git-rev-parse --verify "$1^0") || usage
  24
  25# Make sure we have HEAD that is valid.
  26head=$(git-rev-parse --verify "HEAD^0") || exit
  27
  28# The tree must be really really clean.
  29git-update-index --refresh || exit
  30diff=$(git-diff-index --cached --name-status -r HEAD)
  31case "$different" in
  32?*)     echo "$diff"
  33        exit 1
  34        ;;
  35esac
  36
  37# If the branch to rebase is given, first switch to it.
  38case "$#" in
  392)
  40        git-checkout "$2" || usage
  41esac
  42
  43# If the HEAD is a proper descendant of $other, we do not even need
  44# to rebase.  Make sure we do not do needless rebase.  In such a
  45# case, merge-base should be the same as "$other".
  46mb=$(git-merge-base "$other" "$head")
  47if test "$mb" = "$other"
  48then
  49        echo >&2 "Current branch `git-symbolic-ref HEAD` is up to date."
  50        exit 0
  51fi
  52
  53# Rewind the head to "$other"
  54git-reset --hard "$other"
  55git-format-patch -k --stdout --full-index "$other" ORIG_HEAD |
  56git am --binary -3 -k