summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7296096)
raw | patch | inline | side by side (parent: 7296096)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Mon, 23 Jul 2007 22:45:49 +0000 (23:45 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 24 Jul 2007 06:04:15 +0000 (23:04 -0700) |
Up to now, git rebase -i was quite chatty, showing through all the
nice core programs it called.
Now it only shows a progress meter by default.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
nice core programs it called.
Now it only shows a progress meter by default.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--interactive.sh | patch | blob | history |
index 579a45ebbbd121d0daa07e6f86a7a335d0e64150..ac1f5a2d3f5c1bd706989b58d0e381821da05062 100755 (executable)
echo "$*" >&2
}
+output () {
+ case "$VERBOSE" in
+ '')
+ "$@" > "$DOTEST"/output 2>&1
+ status=$?
+ test $status != 0 &&
+ cat "$DOTEST"/output
+ return $status
+ ;;
+ *)
+ "$@"
+ esac
+}
+
require_clean_work_tree () {
# test if working tree is dirty
git rev-parse --verify HEAD > /dev/null &&
sed -e 1q < "$TODO" >> "$DONE"
sed -e 1d < "$TODO" >> "$TODO".new
mv -f "$TODO".new "$TODO"
+ count=$(($(wc -l < "$DONE")))
+ total=$(($count+$(wc -l < "$TODO")))
+ printf "Rebasing (%d/%d)\r" $count $total
+ test -z "$VERBOSE" || echo
}
make_patch () {
pick_one () {
case "$1" in -n) sha1=$2 ;; *) sha1=$1 ;; esac
- git rev-parse --verify $sha1 || die "Invalid commit name: $sha1"
+ output git rev-parse --verify $sha1 || die "Invalid commit name: $sha1"
test -d "$REWRITTEN" &&
pick_one_preserving_merges "$@" && return
parent_sha1=$(git rev-parse --verify $sha1^ 2>/dev/null)
current_sha1=$(git rev-parse --verify HEAD)
if [ $current_sha1 = $parent_sha1 ]; then
- git reset --hard $sha1
- test "a$1" = a-n && git reset --soft $current_sha1
+ output git reset --hard $sha1
+ test "a$1" = a-n && output git reset --soft $current_sha1
sha1=$(git rev-parse --short $sha1)
- warn Fast forward to $sha1
+ output warn Fast forward to $sha1
else
- git cherry-pick $STRATEGY "$@"
+ output git cherry-pick $STRATEGY "$@"
fi
}
done
case $fast_forward in
t)
- echo "Fast forward to $sha1"
+ output warn "Fast forward to $sha1"
test $preserve=f && echo $sha1 > "$REWRITTEN"/$sha1
;;
f)
first_parent=$(expr "$new_parents" : " \([^ ]*\)")
# detach HEAD to current parent
- git checkout $first_parent 2> /dev/null ||
+ output git checkout $first_parent 2> /dev/null ||
die "Cannot move HEAD to $first_parent"
echo $sha1 > "$DOTEST"/current-commit
msg="$(git cat-file commit $sha1 | \
sed -e '1,/^$/d' -e "s/[\"\\]/\\\\&/g")"
# NEEDSWORK: give rerere a chance
- if ! git merge $STRATEGY -m "$msg" $new_parents
+ if ! output git merge $STRATEGY -m "$msg" $new_parents
then
echo "$msg" > "$GIT_DIR"/MERGE_MSG
die Error redoing merge $sha1
fi
;;
*)
- git cherry-pick $STRATEGY "$@" ||
+ output git cherry-pick $STRATEGY "$@" ||
die_with_patch $sha1 "Could not pick $sha1"
esac
esac
failed=f
pick_one -n $sha1 || failed=t
- git reset --soft HEAD^
+ output git reset --soft HEAD^
author_script=$(get_author_ident_from_commit $sha1)
echo "$author_script" > "$DOTEST"/author-script
case $failed in
# This is like --amend, but with a different message
eval "$author_script"
export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
- git commit -F "$MSG" $EDIT_COMMIT
+ output git commit -F "$MSG" $EDIT_COMMIT
;;
t)
cp "$MSG" "$GIT_DIR"/MERGE_MSG
HEADNAME=$(cat "$DOTEST"/head-name)
HEAD=$(cat "$DOTEST"/head)
git symbolic-ref HEAD $HEADNAME &&
- git reset --hard $HEAD &&
+ output git reset --hard $HEAD &&
rm -rf "$DOTEST"
exit
;;
test -d "$DOTEST" || die "No interactive rebase running"
- git reset --hard && do_rest
+ output git reset --hard && do_rest
;;
-s|--strategy)
shift
if [ ! -z "$2"]
then
- git show-ref --verify --quiet "refs/heads/$2" ||
+ output git show-ref --verify --quiet "refs/heads/$2" ||
die "Invalid branchname: $2"
- git checkout "$2" ||
+ output git checkout "$2" ||
die "Could not checkout $2"
fi
test -z "$(grep -ve '^$' -e '^#' < $TODO)" &&
die_abort "Nothing to do"
- git checkout $ONTO && do_rest
+ output git checkout $ONTO && do_rest
esac
shift
done