bin/git-histedit

Fri, 25 Oct 2019 14:10:27 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 25 Oct 2019 14:10:27 -0500
changeset 814
639a3868c3da
parent 798
d690f45fd713
permissions
-rwxr-xr-x

compensate for some muscle memory

#!/bin/sh
set -eu

case ${1:-} in *help|-h)
  exec perldoc -T $0;;
esac

BRANCH="$(git symbolic-ref --short -q HEAD)"
BASE=$(git merge-base "@{u}" "$BRANCH")

exec git rebase --interactive --autosquash "$@" "$BASE" "$BRANCH"

:<<=cut
=head1 NAME

git histedit

=head1 SYNOPSIS

  $ git histedit

=head1 DESCRIPTION

C<histedit> lets you edit the current branch using interactive rebase, but
without actually I<moving> the fork point of your branch, avoiding the
complications of fixing up your history and dealing with merge conflicts at the
same time.

See also: C<hg histedit>

=cut

mercurial