3 # Copyright (c) 2010 Junio C Hamano.
11 onto_name
=$
(cat "$state_dir"/onto_name
) &&
12 end
=$
(cat "$state_dir"/end
) &&
13 msgnum
=$
(cat "$state_dir"/msgnum
)
17 test -d "$state_dir" || die
"$state_dir directory does not exist"
19 unmerged
=$
(git ls-files
-u)
20 if test -n "$unmerged"
22 echo "You still have unmerged paths in your index"
23 echo "did you forget to use git add?"
27 cmt
=`cat "$state_dir/current"`
28 if ! git diff-index
--quiet --ignore-submodules HEAD
--
30 if ! git commit
--no-verify -C "$cmt"
32 echo "Commit failed, please do not call \"git commit\""
33 echo "directly, but instead do one of the following: "
36 if test -z "$GIT_QUIET"
38 printf "Committed: %0${prec}d " $msgnum
40 echo "$cmt $(git rev-parse HEAD^0)" >> "$state_dir/rewritten"
42 if test -z "$GIT_QUIET"
44 printf "Already applied: %0${prec}d " $msgnum
47 test -z "$GIT_QUIET" &&
48 GIT_PAGER
='' git log
--format=%s
-1 "$cmt"
50 # onto the next patch:
51 msgnum
=$
(($msgnum + 1))
52 echo "$msgnum" >"$state_dir/msgnum"
56 cmt
="$(cat "$state_dir/cmt.
$1")"
57 echo "$cmt" > "$state_dir/current"
58 hd
=$
(git rev-parse
--verify HEAD
)
59 cmt_name
=$
(git symbolic-ref HEAD
2> /dev
/null ||
echo HEAD
)
60 msgnum
=$
(cat "$state_dir/msgnum")
61 eval GITHEAD_
$cmt='"${cmt_name##refs/heads/}~$(($end - $msgnum))"'
62 eval GITHEAD_
$hd='$onto_name'
63 export GITHEAD_
$cmt GITHEAD_
$hd
64 if test -n "$GIT_QUIET"
66 GIT_MERGE_VERBOSITY
=1 && export GIT_MERGE_VERBOSITY
68 test -z "$strategy" && strategy
=recursive
69 eval 'git-merge-$strategy' $strategy_opts '"$cmt^" -- "$hd" "$cmt"'
73 unset GITHEAD_
$cmt GITHEAD_
$hd
77 git rerere
$allow_rerere_autoupdate
81 echo "Strategy: $strategy failed, try another" 1>&2
85 die
"Unknown exit code ($rv) from command:" \
86 "git-merge-$strategy $cmt^ -- HEAD $cmt"
92 move_to_original_branch
93 git notes copy
--for-rewrite=rebase
< "$state_dir"/rewritten
94 if test -x "$GIT_DIR"/hooks
/post-rewrite
&&
95 test -s "$state_dir"/rewritten
; then
96 "$GIT_DIR"/hooks
/post-rewrite rebase
< "$state_dir"/rewritten
106 while test "$msgnum" -le "$end"
117 msgnum
=$
(($msgnum + 1))
118 while test "$msgnum" -le "$end"
128 mkdir
-p "$state_dir"
129 echo "$onto_name" > "$state_dir/onto_name"
133 for cmt
in `git rev-list --reverse --no-merges "$revisions"`
135 msgnum
=$
(($msgnum + 1))
136 echo "$cmt" > "$state_dir/cmt.$msgnum"
139 echo 1 >"$state_dir/msgnum"
140 echo $msgnum >"$state_dir/end"
145 while test "$msgnum" -le "$end"