-
Notifications
You must be signed in to change notification settings - Fork 611
/
shears.sh
executable file
·679 lines (620 loc) · 16.8 KB
/
shears.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
#!/bin/sh
#
# This script intends to help rebasing a "thicket of branches", i.e. a branch
# that contains merged topic branches.
#
# The main use case is the development of Git for Windows: its integration
# branch needs to be rebased frequently, to facilitate submitting patch series
# to upstream Git. Git for Windows' integration branch contains dozens of
# topic branches that are at various stages of readiness, though, hence it is
# essential to maintain the branch structure.
#
# As an additional convenience, this script supports a method developed by the
# Git for Windows project to rebase while *still* retaining the ability to
# fast-forward from previous states of the branch, called the 'merging
# rebase': instead of starting the rebase directly on top of the upstream
# commit, the previous history is integrated via a "fake" merge (i.e. using
# the 'ours' strategy, in effect reverting all of the changes that are about
# to be rebased).
#
# Example usage (regular Git for Windows workflow)
#
# git fetch upstream
# BASE="$(git rev-parse ":/Start the merging-rebase")"
# shears.sh --merging --onto upstream/HEAD $BASE
#
# Usage: shears [options] ( <upstream> | merging-rebase )
# options:
# -m,--merging[=<message>]
# start the rebased branch by a fake merge of the previous state
# --onto=<commit>
# rebase onto the given revision
# -f,--force
# force operation even if a previous run was aborted unsuccessfully
#
# Technical implementation notes:
#
# Originally, the shears were implemented as a pure Unix shell script on
# top of the interactive rebase, by inserting itself as the sequence
# editor. After years of proving its robustness, the shears were
# re-implemented in C and contributed to the core Git as --rebase-merges
# mode to the interactive rebase (with slight modifications such as doing
# away with the `bud` call, renaming `mark` to `label` and `rewind` to
# `reset`).
#
# When this script detects that the current Git version supports the
# --rebase-merges mode, it will opt to use that mode, otherwise it will fall
# back to its original implementation in pure Unix shell.
#
# The remainder of this comment describes the shell version:
#
# The idea is to generate a rebase script with "new" commands, i.e. in
# addition to "pick", "reword" and friends, additional commands are handled:
#
# bud
# rewinds to the <onto> commit, to start "budding" a new branch
#
# mark <nickname>
# assign a nick name to the current revision, for later use with "merge" or
# "rewind"
#
# rewind <nickname>
# reset the HEAD to the given revision (the previous state should be marked
# with a nickname first, to avoid losing commits)
#
# finish <nickname>
# mark a topic branch as complete, starting the next one
#
# merge [-C <commit>] <nickname>
# merge the given topic branch, optionally using the commit message of a
# specific commit
#
# start_merging_rebase
# start the rebase by a fake merge, i.e. incorporating the commits about to
# be rebased but reverting all their changes, to maintain fast-forwardability
#
# cleanup
# clean up all temporary aliases and refs; This *must* be the last command.
#
# To support these additional commands, we not only generate our very own
# rebase script, but then call rebase -i with our fake editor to put the
# rebase script into place and then let the user edit the script.
#
# After letting the user edit the script, we rewrite the rebase script,
# replacing the "new" rebase commands with calls to a temporary alias ".r"
# that simply calls the command implementations contained in the shears.sh
# script itself.
die () {
echo "$*" >&2
exit 1
}
git_dir="$(git rev-parse --git-dir)" ||
die "Not in a Git directory"
help () {
cat >&2 << EOF
Usage: $0 [options] ( <upstream> | merging-rebase )
Options:
-m|--merging[=<msg>] allow fast-forwarding the current to the rebased branch
--onto=<commit> rebase onto the given commit
--recreate=<merge> recreate the branch merged in the specified commit
EOF
exit 1
}
# Extra commands for use in the rebase script
extra_commands="edit bud finish mark rewind merge start_merging_rebase cleanup"
edit () {
GIT_EDITOR="$1" &&
GIT_SEQUENCE_EDITOR="$GIT_EDITOR" &&
export GIT_EDITOR GIT_SEQUENCE_EDITOR &&
shift &&
case "$*" in
*/git-rebase-todo)
test -s "$git_dir"/SHEARS-SCRIPT || {
# We're using --rebase-merges
test -s "$git_dir"/SHEARS-MERGING-MESSAGE &&
(echo "exec \"$this\" start_merging_rebase" &&
cat "$1") >"$1".new &&
mv -f "$1".new "$1"
eval "$GIT_EDITOR" "$@"
exit
}
sed -e '/^noop/d' < "$1" >> "$git_dir"/SHEARS-SCRIPT &&
mv "$git_dir"/SHEARS-SCRIPT "$1"
eval "$GIT_EDITOR" "$@" &&
mv "$1" "$git_dir"/SHEARS-SCRIPT &&
exprs="$(for command in $extra_commands
do
printf " -e 's/^$command\$/exec git .r &/'"
printf " -e 's/^$command /exec git .r &/'"
done)" &&
eval sed $exprs < "$git_dir"/SHEARS-SCRIPT > "$1"
;;
*)
eval "$GIT_EDITOR" "$@"
exit
;;
esac
}
mark () {
git update-ref -m "Marking '$1' as rewritten" refs/rewritten/"$1" HEAD
}
rewind () {
git reset --hard refs/rewritten/"$1"
}
bud () {
shorthead="$(git rev-parse --short --verify HEAD)" &&
git for-each-ref refs/rewritten/ |
grep "^$shorthead" ||
die "Refusing to leave unmarked revision $shorthead behind"
git reset --hard refs/rewritten/onto
}
finish () {
mark "$@" &&
bud
}
merge () {
# parse command-line arguments
parents=
while test $# -gt 0 && test "a$1" != a-C
do
parents="$parents $1" &&
shift
done &&
if test "a$1" = "a-C"
then
shift &&
orig="$1" &&
shift &&
# determine whether the merge needs to be redone
p="$(git rev-parse HEAD)$parents" &&
o="$(git rev-list -1 --parents $orig |
sed "s/[^ ]*//")" &&
while p=${p# }; o=${o# }; test -n "$p$o"
do
p1=${p%% *}; o1=${o%% *};
test $o1 = "$(git rev-parse "$p1")" || break
p=${p#$p1}; o=${o#$o1}
done &&
# either redo merge or fast-forward
if test -z "$p$o"
then
git reset --hard $orig
return
fi &&
msg="$(git cat-file commit $orig |
sed "1,/^$/d")"
else
msg=
p=
for parent in $parents
do
test -z "$msg" ||
msg="$msg and "
msg="$msg'$parent'"
p="$p $(git rev-parse --verify refs/rewritten/$parent \
2> /dev/null ||
echo $parent)"
done &&
msg="Merge $msg into HEAD"
fi &&
git merge -n --no-ff -m "$msg" $p
}
start_merging_rebase () {
test "$#" -gt 0 ||
set "$(cat "$(git rev-parse --git-path rebase-merge/orig-head)")"
git merge -s ours -m "$(cat "$git_dir"/SHEARS-MERGING-MESSAGE)" "$1"
}
cleanup () {
rm -f "$git_dir"/SHEARS-SCRIPT &&
for rewritten
do
git update-ref -d refs/rewritten/$rewritten
done &&
for rewritten in $(git for-each-ref refs/rewritten/ |
sed 's/^[^ ]* commit.refs\/rewritten\///')
do
test onto = "$rewritten" ||
merge $rewritten
git update-ref -d refs/rewritten/$rewritten
done &&
if ! test -f "$git_dir"/before-rebase-merge/cross-validating
then
git config --unset alias..r
fi
}
this="$(cd "$(dirname "$0")" && pwd)/$(basename "$0")"
merging=
base_message=
onto=
recreate=
force=
while test $# -gt 0
do
case "$1" in
-m|--merging)
merging=t
base_message=
;;
--merging=*)
merging=t
base_message="${1#--merging=}"
;;
--onto)
shift
onto="$1"
;;
--onto=*)
onto="${1#--onto=}"
;;
--recreate)
shift
recreate="$recreate $1"
;;
--recreate=*)
recreate="$recreate ${1#--recreate=}"
;;
--force|-f)
force=t
;;
-h|--help)
help
;;
-*)
echo "Unknown option: $1" >&2
exit 1
;;
*)
break
;;
esac
shift
done
# Use the original shears implementation unless we can use git rebase -ir
use_original_shears=t
if test -z "$recreate" && git rebase -h 2>&1 | grep -q rebase-merges
then
use_original_shears=
fi
case " $extra_commands " in
*" $1 "*)
command="$1"
shift
"$command" "$@"
exit
;;
esac
string2regex () {
echo "$*" |
sed 's/[][\\\/*?]/\\&/g'
}
merge2branch_name () {
git show -s --format=%s "$1" |
sed -n -e "s/^Merge [^']*'\([^']*\).*/\1/p" \
-e "s/^Merge pull request #[0-9]* from //p" |
tr ' ' '-'
}
commit_name_map=
name_commit () {
name="$(printf '%s' "$commit_name_map" |
sed -n "s/^$1 //p")"
echo "${name:-$1}"
}
ensure_labeled () {
for n in "$@"
do
case " $needslabel " in
*" $n "*)
;;
*)
needslabel="$needslabel $n"
;;
esac
done
}
generate_script () {
shorthead=$(git rev-parse --short $head)
todo=
if test -z "$merging"
then
rm -f "$git_dir"/SHEARS-MERGING-MESSAGE
else
from=$(git rev-parse --short "$upstream") &&
to=$(git rev-parse --short "$onto") &&
cat > "$git_dir"/SHEARS-MERGING-MESSAGE << EOF &&
Start the merging-rebase to $onto
This commit starts the rebase of $from to $to
$base_message
EOF
todo="start_merging_rebase \"$shorthead\""
fi
test -n "$use_original_shears" || return 0
echo "Generating script..." >&2
origtodo="$(git rev-list --no-merges --cherry-pick --pretty=oneline \
--abbrev-commit --reverse --right-only --topo-order \
$(test "$onto" = "$upstream" || echo ^$upstream) $onto...$head | \
sed "s/^/pick /")"
shortonto=$(git rev-parse --short $onto)
# --topo-order has the bad habit of breaking first-parent chains over
# merges, so we generate the topological order ourselves here
list="$(git log --format='%h %p' --topo-order --reverse \
$(test "$onto" = "$upstream" || echo ^$upstream) $onto..$head)"
todo="$(printf '%s\n%s\n' "$todo" \
"mark onto")"
toberebased=" $(printf '%s' "$list" | cut -f 1 -d ' ' | tr '\n' ' ')"
handled=
needslabel=
# each tip is an end point of a commit->first parent chain
branch_tips="$(printf '%s' "$list" |
cut -f 3- -d ' ' |
tr ' ' '\n' |
grep -v '^$')"
ensure_labeled $branch_tips
branch_tips="$(printf '%s\n%s' "$branch_tips" "$shorthead")"
# set up the map tip -> branch name
for tip in $branch_tips
do
merged_by="$(printf '%s' "$list" |
sed -n "s/^\([^ ]*\) [^ ]* $tip$/\1/p" |
head -n 1)"
if test -n "$merged_by"
then
branch_name="$(merge2branch_name "$merged_by")"
test -z "$branch_name" ||
test "$tip" != "$(name_commit "$tip")" ||
commit_name_map="$(printf '%s\n%s' \
"$tip $branch_name" "$commit_name_map")"
fi
done
branch_name_dupes="$(printf '%s' "$commit_name_map" |
sed 's/[^ ]* //' |
sort |
uniq -d)"
if test -n "$branch_name_dupes"
then
exprs="$(printf '%s' "$branch_name_dupes" |
while read branch_name
do
printf " -e '%s'" \
"$(string2regex "$branch_name")"
done)"
test -z "$exprs" ||
commit_name_map="$(printf '%s' "$commit_name_map" |
eval grep -v $exprs)"
fi
tip_total=$(printf '%s' "$branch_tips" | wc -l)
tip_counter=0
for tip in $branch_tips
do
printf '%d/%d...\r' $tip_counter $tip_total >&2
tip_counter=$(($tip_counter+1))
# if this is not a commit to be rebased, skip
case "$toberebased" in *" $tip "*) ;; *) continue;; esac
# if it is handled already, skip
case "$handled " in *" $tip "*) continue;; esac
# start sub-todo for this tip
subtodo=
commit=$tip
while true
do
printf '\tcommit %s...\r' "$commit" >&2
# if already handled, this is our branch point
case "$handled " in
*" $commit "*)
ensure_labeled $commit
subtodo="$(printf '\nrewind %s # %s\n%s' \
"$(name_commit $commit)" \
"$(git show -s --format=%s $commit)" \
"$subtodo")"
break
;;
esac
line="$(printf '%s' "$list" | grep "^$commit ")"
# if there is no line, branch from the 'onto' commit
if test -z "$line"
then
subtodo="$(printf '\nbud\n%s' \
"$subtodo")"
break
fi
parents=${line#* }
case "$parents" in
*' '*)
# merge
parents2="`for parent in ${parents#* }
do
case "$toberebased" in
*" $parent "*)
printf refs/rewritten/
;;
esac
echo "$(name_commit $parent) "
done`"
subtodo="$(printf '%s # %s\n%s' \
"merge $parents2-C $commit" \
"$(git show -s --format=%s $commit)" \
"$subtodo")"
;;
*)
# non-merge commit
line="$(printf '%s' "$origtodo" |
grep "^[a-z]* $commit")"
if test -z "$line"
then
line="# skip $commit"
fi
subtodo="$(printf '%s\n%s' "$line" "$subtodo")"
;;
esac
handled="$handled $commit"
commit=${parents%% *}
done
branch_name="$(name_commit "$tip")"
test -n "$branch_name" &&
test "$branch_name" = "$tip" ||
subtodo="$(printf '%s' "$subtodo" |
sed -e "1a\\
# Branch: $branch_name")"
todo="$(printf '%s\n\n%s' "$todo" "$subtodo")"
done
for commit in $needslabel
do
linenumber="$(printf '%s' "$todo" |
grep -n -e "^\(pick\|# skip\) $commit" \
-e "^merge [-_\\.0-9a-zA-Z/ ]* -C $commit")"
linenumber=${linenumber%%:*}
test -n "$linenumber" || {
echo "Warning: could not find $commit ($(name_commit $commit)); assuming 'onto'" >&2
linenumber=1
}
todo="$(printf '%s' "$todo" |
sed "${linenumber}a\\
mark $(name_commit $commit)\\
")"
done
lastline=9999
while true
do
fixup="$(printf '%s' "$todo" |
sed "$lastline,\$d" |
grep -n -e '^pick [^ ]* \(fixup\|squash\)!' |
tail -n 1)"
test -n "$fixup" || break
printf '%s...\r' "$fixup" >&2
linenumber=${fixup%%:*}
oneline="${fixup#* }"
shortsha1="${oneline%% *}"
oneline="${oneline#* }"
command=${oneline%%!*}
oneline="${oneline#*! }"
oneline_regex="^pick [^ ]* $(string2regex "$oneline")\$"
targetline="$(printf '%s' "$todo" |
sed "$linenumber,\$d" |
grep -n "$oneline_regex" |
tail -n 1)"
targetline=${targetline%%:*}
if test -n "$targetline"
then
todo="$(printf '%s' "$todo" |
sed -e "${linenumber}d" \
-e "${targetline}a\\
$command $shortsha1 $oneline")"
lastline=$(($linenumber+1))
else
echo "UNHANDLED: $oneline" >&2
lastline=$(($linenumber))
fi
done
while test -n "$recreate"
do
recreate="${recreate# }"
merge="${recreate%% *}"
recreate="${recreate#$merge}"
printf 'Recreating %s...\r' "$merge" >&2
mark="$(git rev-parse --short --verify "$merge^2")" ||
die "Could not find merge commit: $merge^2"
branch_name="$(merge2branch_name "$merge")"
partfile="$git_dir/SHEARS-PART"
printf '%s' "$(test -z "$branch_name" ||
echo "# Branch to recreate: $branch_name")" \
> "$partfile"
for sha1 in $(git rev-list --reverse $merge^..$merge^2)
do
msg="$(git show -s --format=%s $sha1)"
msg_regex="^pick [^ ]* $(string2regex "$msg")\$"
linenumber="$(printf '%s' "$todo" |
grep -n "$msg_regex" |
sed 's/:.*//')"
test -n "$linenumber" ||
die "Not a commit to rebase: $msg"
test 1 = $(echo "$linenumber" | wc -l) ||
die "More than one match for: $msg"
printf '%s' "$todo" |
sed -n "${linenumber}p" >> "$partfile"
todo="$(printf '%s' "$todo" |
sed "${linenumber}d")"
done
linenumber="$(printf '%s' "$todo" |
grep -n "^bud\$" |
tail -n 1 |
sed 's/:.*//')"
printf 'mark %s\n\nbud\n' \
"$(name_commit $mark)" >> "$partfile"
todo="$(printf '%s' "$todo" |
sed -e "${linenumber}r$partfile" \
-e "\$a\\
merge refs/rewritten/$mark -C $(name_commit $merge)")"
done
needslabel="$(for commit in $needslabel
do
printf ' %s' $(name_commit $commit)
done)"
todo="$(printf '%s\n\n%s' "$todo" "cleanup $needslabel")"
printf '%s' "$todo" | uniq
}
setup () {
existing=$(git for-each-ref --format='%(refname)' refs/rewritten/)
test -z "$existing" ||
if test -n "$force"
then
for ref in $existing
do
git update-ref -d $ref
done
else
die "$(printf '%s %s:\n%s\n' \
'There are still rewritten revisions' \
'(use --force to delete)' \
"$existing")"
fi
if test -n "$use_original_shears"
then
alias="$(git config --get alias..r)"
test -z "$alias" ||
test "a$alias" = "a!sh \"$this\"" ||
test -n "$force" ||
die "There is already an '.r' alias!"
git config alias..r "!sh \"$this\""
fi &&
generate_script > "$git_dir"/SHEARS-SCRIPT &&
shears_editor="$(cd "$git_dir" && pwd)/SHEARS-EDITOR" &&
cat > "$shears_editor" << EOF &&
#!/bin/sh
exec "$this" edit "$(git var GIT_EDITOR)" "\$@"
EOF
chmod +x "$shears_editor" &&
GIT_EDITOR="\"$shears_editor\"" &&
GIT_SEQUENCE_EDITOR="\"$shears_editor\"" &&
export GIT_EDITOR GIT_SEQUENCE_EDITOR
}
test ! -d "$git_dir"/rebase-merge &&
test ! -d "$git_dir"/rebase-apply ||
die "Rebase already in progress"
test $# = 1 ||
help
head="$(git rev-parse HEAD)" &&
upstream="$1" &&
if test merging-rebase = "$upstream"
then
upstream="$(git rev-list --grep="^Start the merging-rebase" \
-1 --first-parent HEAD)"
git rev-parse --verify "$upstream" > /dev/null ||
die "Could not find the start of the latest merging rebase!"
fi &&
onto=${onto:-$upstream}||
die "Could not determine rebase parameters"
git update-index -q --ignore-submodules --refresh &&
git diff-files --quiet --ignore-submodules &&
git diff-index --cached --quiet --ignore-submodules HEAD -- ||
die 'There are uncommitted changes!'
setup
# Rebase!
if test -n "$use_original_shears"
then
git rebase -i --onto "$onto" HEAD
elif test -n "$merging"
then
# --merging is incompatible with keeping cousins
git rebase -i --rebase-merges=rebase-cousins --onto "$onto" "$upstream"
else
git rebase -ir --onto "$onto" "$upstream"
fi