3 # git-subtree.sh: split/join git repositories in subdirectories of this one
5 # Copyright (C) 2009 Avery Pennarun <apenwarr@gmail.com>
11 git subtree add --prefix=<prefix> <commit>
12 git subtree merge --prefix=<prefix> <commit>
13 git subtree pull --prefix=<prefix> <repository> <refspec...>
14 git subtree split --prefix=<prefix> <commit...>
19 prefix= the name of the subdir to split out
21 annotate= add a prefix to commit message of new commits
22 b,branch= create a new branch from the split subtree
23 ignore-joins ignore prior --rejoin commits
24 onto= try connecting new tree to an existing one
25 rejoin merge the new branch back into HEAD
26 options for 'merge' and 'pull'
27 squash merge subtree changes as a single commit
29 eval $
(echo "$OPTS_SPEC" | git rev-parse
--parseopt -- "$@" ||
echo exit $?
)
45 if [ -n "$debug" ]; then
52 if [ -z "$quiet" ]; then
62 die
"assertion failed: " "$@"
69 while [ $# -gt 0 ]; do
75 --annotate) annotate
="$1"; shift ;;
76 --no-annotate) annotate
= ;;
77 -b) branch
="$1"; shift ;;
78 --prefix) prefix
="$1"; shift ;;
79 --no-prefix) prefix
= ;;
80 --onto) onto
="$1"; shift ;;
83 --no-rejoin) rejoin
= ;;
84 --ignore-joins) ignore_joins
=1 ;;
85 --no-ignore-joins) ignore_joins
= ;;
87 --no-squash) squash
= ;;
89 *) die
"Unexpected option: $opt" ;;
96 add|merge|pull
) default
= ;;
97 split) default
="--default HEAD" ;;
98 *) die
"Unknown command '$command'" ;;
101 if [ -z "$prefix" ]; then
102 die
"You must provide the --prefix option."
106 if [ "$command" != "pull" ]; then
107 revs
=$
(git rev-parse
$default --revs-only "$@") ||
exit $?
108 dirs="$(git rev-parse --no-revs --no-flags "$@
")" ||
exit $?
109 if [ -n "$dirs" ]; then
110 die
"Error: Use --prefix instead of bare filenames."
114 debug
"command: {$command}"
115 debug
"quiet: {$quiet}"
116 debug
"revs: {$revs}"
123 cachedir
="$GIT_DIR/subtree-cache/$$"
124 rm -rf "$cachedir" || die
"Can't delete old cachedir: $cachedir"
125 mkdir
-p "$cachedir" || die
"Can't create new cachedir: $cachedir"
126 debug
"Using cachedir: $cachedir" >&2
132 if [ -r "$cachedir/$oldrev" ]; then
133 read newrev
<"$cachedir/$oldrev"
143 if [ "$oldrev" != "latest_old" \
144 -a "$oldrev" != "latest_new" \
145 -a -e "$cachedir/$oldrev" ]; then
146 die
"cache for $oldrev already exists!"
148 echo "$newrev" >"$cachedir/$oldrev"
153 if git rev-parse
"$1" >/dev
/null
2>&1; then
160 # if a commit doesn't have a parent, this might not work. But we only want
161 # to remove the parent from the rev-list, and since it doesn't exist, it won't
162 # be there anyway, so do nothing in that case.
163 try_remove_previous
()
165 if rev_exists
"$1^"; then
172 debug
"Looking for latest squash..."
174 git log
--grep="^git-subtree-dir: $dir\$" \
175 --pretty=format
:'START %H%n%s%n%n%b%nEND%n' HEAD |
176 while read a b junk
; do
179 git-subtree-mainline
:) main
="$b" ;;
180 git-subtree-split
:) sub
="$b" ;;
182 if [ -n "$sub" ]; then
183 if [ -n "$main" ]; then
185 # Pretend its sub was a squash.
188 debug
"Squash found: $sq $sub"
200 find_existing_splits
()
202 debug
"Looking for prior splits..."
205 git log
--grep="^git-subtree-dir: $dir\$" \
206 --pretty=format
:'START %H%n%s%n%n%b%nEND%n' $revs |
207 while read a b junk
; do
209 START
) main
="$b"; sq="$b" ;;
210 git-subtree-mainline
:) main
="$b" ;;
211 git-subtree-split
:) sub
="$b" ;;
213 if [ -z "$main" -a -n "$sub" ]; then
214 # squash commits refer to a subtree
215 cache_set
"$sq" "$sub"
217 if [ -n "$main" -a -n "$sub" ]; then
218 debug
" Prior: $main -> $sub"
220 try_remove_previous
"$main"
221 try_remove_previous
"$sub"
232 # We're going to set some environment vars here, so
233 # do it in a subshell to get rid of them safely later
234 debug copy_commit
"{$1}" "{$2}" "{$3}"
235 git log
-1 --pretty=format
:'%an%n%ae%n%ad%n%cn%n%ce%n%cd%n%s%n%n%b' "$1" |
238 read GIT_AUTHOR_EMAIL
240 read GIT_COMMITTER_NAME
241 read GIT_COMMITTER_EMAIL
242 read GIT_COMMITTER_DATE
243 export GIT_AUTHOR_NAME \
247 GIT_COMMITTER_EMAIL \
249 (echo -n "$annotate"; cat ) |
250 git commit-tree
"$2" $3 # reads the rest of stdin
251 ) || die
"Can't copy commit $1"
260 Add '$dir/' from commit '$latest_new'
262 git-subtree-dir: $dir
263 git-subtree-mainline: $latest_old
264 git-subtree-split: $latest_new
274 Split '$dir/' into commit '$latest_new'
276 git-subtree-dir: $dir
277 git-subtree-mainline: $latest_old
278 git-subtree-split: $latest_new
287 oldsub_short
=$
(git rev-parse
--short "$oldsub")
288 newsub_short
=$
(git rev-parse
--short "$newsub")
290 Squashed '$dir/' changes from $oldsub_short..$newsub_short
294 git log
--pretty=tformat
:'%h %s' "$oldsub..$newsub"
295 git log
--pretty=tformat
:'REVERT: %h %s' "$newsub..$oldsub"
299 git-subtree-dir: $dir
300 git-subtree-split: $newsub
307 git log
-1 --pretty=format
:'%T' "$commit" -- ||
exit $?
314 git ls-tree
"$commit" -- "$dir" |
315 while read mode
type tree name
; do
316 assert
[ "$name" = "$dir" ]
326 if [ $# -ne 1 ]; then
327 return 0 # weird parents, consider it changed
329 ptree
=$
(toptree_for_commit
$1)
330 if [ "$ptree" != "$tree" ]; then
333 return 1 # not changed
343 tree
=$
(toptree_for_commit
$newsub) ||
exit $?
344 squash_msg
"$dir" "$oldsub" "$newsub" |
345 git commit-tree
"$tree" -p "$old" ||
exit $?
353 assert
[ -n "$tree" ]
359 for parent
in $newparents; do
360 ptree
=$
(toptree_for_commit
$parent) ||
exit $?
361 [ -z "$ptree" ] && continue
362 if [ "$ptree" = "$tree" ]; then
363 # an identical parent could be used in place of this rev.
366 nonidentical
="$parent"
369 # sometimes both old parents map to the same newparent;
370 # eliminate duplicates
372 for gp
in $gotparents; do
373 if [ "$gp" = "$parent" ]; then
378 if [ -n "$is_new" ]; then
379 gotparents
="$gotparents $parent"
384 if [ -n "$identical" ]; then
387 copy_commit
$rev $tree "$p" ||
exit $?
393 if ! git diff-index HEAD
--exit-code --quiet; then
394 die
"Working tree has modifications. Cannot add."
396 if ! git diff-index
--cached HEAD
--exit-code --quiet; then
397 die
"Index has modifications. Cannot add."
403 if [ -e "$dir" ]; then
404 die
"'$dir' already exists. Cannot add."
409 if [ $# -ne 1 ]; then
410 die
"You must provide exactly one revision. Got: '$revs'"
414 debug
"Adding $dir as '$rev'..."
415 git read-tree
--prefix="$dir" $rev ||
exit $?
416 git checkout
"$dir" ||
exit $?
417 tree
=$
(git write-tree
) ||
exit $?
419 headrev
=$
(git rev-parse HEAD
) ||
exit $?
420 if [ -n "$headrev" -a "$headrev" != "$rev" ]; then
425 commit
=$
(add_msg
"$dir" "$headrev" "$rev" |
426 git commit-tree
$tree $headp -p "$rev") ||
exit $?
427 git
reset "$commit" ||
exit $?
432 if [ -n "$branch" ] && rev_exists
"refs/heads/$branch"; then
433 die
"Branch '$branch' already exists."
436 debug
"Splitting $dir..."
437 cache_setup ||
exit $?
439 if [ -n "$onto" ]; then
440 debug
"Reading history for --onto=$onto..."
443 # the 'onto' history is already just the subdir, so
444 # any parent we find there can be used verbatim
450 if [ -n "$ignore_joins" ]; then
453 unrevs
="$(find_existing_splits "$dir" "$revs")"
456 # We can't restrict rev-list to only $dir here, because some of our
457 # parents have the $dir contents the root, and those won't match.
458 # (and rev-list --follow doesn't seem to solve this)
459 grl
='git rev-list --reverse --parents $revs $unrevs'
460 revmax
=$
(eval "$grl" |
wc -l)
464 while read rev parents
; do
465 revcount
=$
(($revcount + 1))
466 say
-n "$revcount/$revmax ($createcount)
"
467 debug
"Processing commit: $rev"
468 exists
=$
(cache_get
$rev)
469 if [ -n "$exists" ]; then
470 debug
" prior: $exists"
473 createcount
=$
(($createcount + 1))
474 debug
" parents: $parents"
475 newparents
=$
(cache_get
$parents)
476 debug
" newparents: $newparents"
478 tree
=$
(subtree_for_commit
$rev "$dir")
479 debug
" tree is: $tree"
481 # ugly. is there no better way to tell if this is a subtree
482 # vs. a mainline commit? Does it matter?
483 [ -z $tree ] && continue
485 newrev
=$
(copy_or_skip
"$rev" "$tree" "$newparents") ||
exit $?
486 debug
" newrev is: $newrev"
487 cache_set
$rev $newrev
488 cache_set latest_new
$newrev
489 cache_set latest_old
$rev
491 latest_new
=$
(cache_get latest_new
)
492 if [ -z "$latest_new" ]; then
493 die
"No new revisions were found"
496 if [ -n "$rejoin" ]; then
497 debug
"Merging split branch into HEAD..."
498 latest_old
=$
(cache_get latest_old
)
500 -m "$(rejoin_msg $dir $latest_old $latest_new)" \
501 $latest_new >&2 ||
exit $?
503 if [ -n "$branch" ]; then
504 git update-ref
-m 'subtree split' "refs/heads/$branch" \
505 $latest_new "" ||
exit $?
506 say
"Created branch '$branch'"
517 if [ $# -ne 1 ]; then
518 die
"You must provide exactly one revision. Got: '$revs'"
522 if [ -n "$squash" ]; then
523 first_split
="$(find_latest_squash "$dir")"
524 if [ -z "$first_split" ]; then
525 die
"Can't squash-merge: '$dir' was never added."
530 if [ "$sub" = "$rev" ]; then
531 say
"Subtree is already at commit $rev."
534 new
=$
(new_squash_commit
"$old" "$sub" "$rev") ||
exit $?
535 debug
"New squash commit: $new"
539 git merge
-s subtree
$rev
546 git pull
-s subtree
"$@"