bin/git-histedit

changeset 875
be7ff50ed819
parent 874
dc834fea1a3f
child 876
9702221eb0f6
deleted file mode 100755
--- a/bin/git-histedit
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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