]> git.ipfire.org Git - thirdparty/git.git/commitdiff
rebase: add --show-current-patch
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sun, 11 Feb 2018 09:43:27 +0000 (16:43 +0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Feb 2018 22:07:59 +0000 (14:07 -0800)
It is useful to see the full patch while resolving conflicts in a
rebase. The only way to do it now is

    less .git/rebase-*/patch

which could turn out to be a lot longer to type if you are in a
linked worktree, or not at top-dir. On top of that, an ordinary user
should not need to peek into .git directory. The new option is
provided to examine the patch.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-rebase.txt
builtin/am.c
contrib/completion/git-completion.bash
git-rebase--am.sh
git-rebase--interactive.sh
git-rebase--merge.sh
git-rebase.sh
t/t3400-rebase.sh
t/t3404-rebase-interactive.sh

index 8a861c1e0d69eda71fa2eec791e67c136b63b177..7ef95774726ddaefeede9474e8c66e27b98ddaa6 100644 (file)
@@ -12,7 +12,7 @@ SYNOPSIS
        [<upstream> [<branch>]]
 'git rebase' [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>]
        --root [<branch>]
-'git rebase' --continue | --skip | --abort | --quit | --edit-todo
+'git rebase' --continue | --skip | --abort | --quit | --edit-todo | --show-current-patch
 
 DESCRIPTION
 -----------
@@ -250,6 +250,10 @@ leave out at most one of A and B, in which case it defaults to HEAD.
 --edit-todo::
        Edit the todo list during an interactive rebase.
 
+--show-current-patch::
+       Show the current patch in an interactive rebase or when rebase
+       is stopped because of conflicts.
+
 -m::
 --merge::
        Use merging strategies to rebase.  When the recursive (default) merge
index 07abfb8f832a98476ec177655678f244e9f67c32..37219fceb0a77a245c909a714c704a6b698852b5 100644 (file)
@@ -2126,6 +2126,17 @@ static int show_patch(struct am_state *state)
        const char *patch_path;
        int len;
 
+       if (!is_null_oid(&state->orig_commit)) {
+               const char *av[4] = { "show", NULL, "--", NULL };
+               char *new_oid_str;
+               int ret;
+
+               av[1] = new_oid_str = xstrdup(oid_to_hex(&state->orig_commit));
+               ret = run_command_v_opt(av, RUN_GIT_CMD);
+               free(new_oid_str);
+               return ret;
+       }
+
        patch_path = am_path(state, msgnum(state));
        len = strbuf_read_file(&sb, patch_path, 0);
        if (len < 0)
index 56ca445fa83b1e4a1aefbe5e6fe529a1fa6f7df4..2bd30d68cfc04b7b03965bbd6e3f833f7613f9dc 100644 (file)
@@ -1992,11 +1992,11 @@ _git_rebase ()
 {
        __git_find_repo_path
        if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then
-               __gitcomp "--continue --skip --abort --quit --edit-todo"
+               __gitcomp "--continue --skip --abort --quit --edit-todo --show-current-patch"
                return
        elif [ -d "$__git_repo_path"/rebase-apply ] || \
             [ -d "$__git_repo_path"/rebase-merge ]; then
-               __gitcomp "--continue --skip --abort --quit"
+               __gitcomp "--continue --skip --abort --quit --show-current-patch"
                return
        fi
        __git_complete_strategy && return
index 14c50782e096966b860d49cbaed7658e9f56958f..c931891cbc45845f3e781b75a3978e327d770696 100644 (file)
@@ -27,6 +27,9 @@ skip)
        move_to_original_branch
        return
        ;;
+show-current-patch)
+       exec git am --show-current-patch
+       ;;
 esac
 
 if test -z "$rebase_root"
index d47bd29593ad8711448293f3b6bf2e059323ff78..0c0f8abbf9e569c8f074b98242cecfb56d45c046 100644 (file)
@@ -840,6 +840,9 @@ To continue rebase after editing, run:
 
        exit
        ;;
+show-current-patch)
+       exec git show "$(cat "$state_dir/stopped-sha")" --
+       ;;
 esac
 
 comment_for_reflog start
index 06a4723d4db3db74ea17ace60d824e83cdee25e9..0a96dfae37126b90fdf518da01933ff68b82da7c 100644 (file)
@@ -137,6 +137,9 @@ skip)
        finish_rb_merge
        return
        ;;
+show-current-patch)
+       exec git show "$(cat "$state_dir/current")" --
+       ;;
 esac
 
 mkdir -p "$state_dir"
index fd72a35c65b43537b292445b87ffb7e682cc076a..41c915d18c2c4e160b4208dfc859f28ee54eb090 100755 (executable)
@@ -45,6 +45,7 @@ abort!             abort and check out the original branch
 skip!              skip current patch and continue
 edit-todo!         edit the todo list during an interactive rebase
 quit!              abort but keep HEAD where it is
+show-current-patch! show the patch file being applied or merged
 "
 . git-sh-setup
 set_reflog_action rebase
@@ -245,7 +246,7 @@ do
        --verify)
                ok_to_skip_pre_rebase=
                ;;
-       --continue|--skip|--abort|--quit|--edit-todo)
+       --continue|--skip|--abort|--quit|--edit-todo|--show-current-patch)
                test $total_argc -eq 2 || usage
                action=${1##--}
                ;;
@@ -412,6 +413,10 @@ quit)
 edit-todo)
        run_specific_rebase
        ;;
+show-current-patch)
+       run_specific_rebase
+       die "BUG: run_specific_rebase is not supposed to return here"
+       ;;
 esac
 
 # Make sure no rebase is in progress
index 8ac58d5ea5e4b8b75deaa74f3d6bca29f37dbcb6..09943d6a9bb4580bbdd8f892380fdeaa0d8972da 100755 (executable)
@@ -277,4 +277,37 @@ EOF
        test_cmp From_.msg out
 '
 
+test_expect_success 'rebase--am.sh and --show-current-patch' '
+       test_create_repo conflict-apply &&
+       (
+               cd conflict-apply &&
+               test_commit init &&
+               echo one >>init.t &&
+               git commit -a -m one &&
+               echo two >>init.t &&
+               git commit -a -m two &&
+               git tag two &&
+               test_must_fail git rebase --onto init HEAD^ &&
+               GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr &&
+               grep "show.*$(git rev-parse two)" stderr
+       )
+'
+
+test_expect_success 'rebase--merge.sh and --show-current-patch' '
+       test_create_repo conflict-merge &&
+       (
+               cd conflict-merge &&
+               test_commit init &&
+               echo one >>init.t &&
+               git commit -a -m one &&
+               echo two >>init.t &&
+               git commit -a -m two &&
+               git tag two &&
+               test_must_fail git rebase --merge --onto init HEAD^ &&
+               git rebase --show-current-patch >actual.patch &&
+               GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr &&
+               grep "show.*$(git rev-parse two)" stderr
+       )
+'
+
 test_done
index 481a3500900d0fccb28762ba24b2ca422956a44f..3af6f149a96a55426473974b2e4281c76be46f15 100755 (executable)
@@ -225,6 +225,11 @@ test_expect_success 'stop on conflicting pick' '
        test 0 = $(grep -c "^[^#]" < .git/rebase-merge/git-rebase-todo)
 '
 
+test_expect_success 'show conflicted patch' '
+       GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr &&
+       grep "show.*$(cat "$state_dir/stopped-sha")" stderr
+'
+
 test_expect_success 'abort' '
        git rebase --abort &&
        test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&