2009-04-24 20:13:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# git-subtree.sh: split/join git repositories in subdirectories of this one
|
|
|
|
#
|
2009-04-24 21:48:41 +02:00
|
|
|
# Copyright (C) 2009 Avery Pennarun <apenwarr@gmail.com>
|
2009-04-24 20:13:34 +02:00
|
|
|
#
|
2009-04-25 04:36:06 +02:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
set -- -h
|
|
|
|
fi
|
2009-04-24 20:13:34 +02:00
|
|
|
OPTS_SPEC="\
|
2009-05-30 07:10:14 +02:00
|
|
|
git subtree add --prefix=<prefix> <commit>
|
2009-04-25 05:41:19 +02:00
|
|
|
git subtree merge --prefix=<prefix> <commit>
|
|
|
|
git subtree pull --prefix=<prefix> <repository> <refspec...>
|
2009-05-30 07:10:14 +02:00
|
|
|
git subtree split --prefix=<prefix> <commit...>
|
2009-04-24 20:13:34 +02:00
|
|
|
--
|
2009-04-25 04:36:06 +02:00
|
|
|
h,help show the help
|
|
|
|
q quiet
|
2009-04-27 00:06:08 +02:00
|
|
|
d show debug messages
|
2010-01-06 23:11:43 +01:00
|
|
|
p,prefix= the name of the subdir to split out
|
2010-01-09 19:55:35 +01:00
|
|
|
m,message= use the given message as the commit message for the merge commit
|
2009-04-25 05:41:19 +02:00
|
|
|
options for 'split'
|
2009-04-26 14:59:12 +02:00
|
|
|
annotate= add a prefix to commit message of new commits
|
2009-05-30 07:05:43 +02:00
|
|
|
b,branch= create a new branch from the split subtree
|
|
|
|
ignore-joins ignore prior --rejoin commits
|
2009-04-25 04:36:06 +02:00
|
|
|
onto= try connecting new tree to an existing one
|
|
|
|
rejoin merge the new branch back into HEAD
|
2009-05-30 10:11:43 +02:00
|
|
|
options for 'add', 'merge', and 'pull'
|
2009-05-30 06:48:07 +02:00
|
|
|
squash merge subtree changes as a single commit
|
2009-04-24 20:13:34 +02:00
|
|
|
"
|
|
|
|
eval $(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)
|
2009-08-26 16:41:03 +02:00
|
|
|
PATH=$(git --exec-path):$PATH
|
|
|
|
. git-sh-setup
|
2009-04-24 20:13:34 +02:00
|
|
|
require_work_tree
|
|
|
|
|
|
|
|
quiet=
|
2009-05-30 07:05:43 +02:00
|
|
|
branch=
|
2009-04-27 00:06:08 +02:00
|
|
|
debug=
|
2009-04-24 20:13:34 +02:00
|
|
|
command=
|
2009-04-24 21:48:41 +02:00
|
|
|
onto=
|
|
|
|
rejoin=
|
2009-04-25 04:36:06 +02:00
|
|
|
ignore_joins=
|
2009-04-26 14:59:12 +02:00
|
|
|
annotate=
|
2009-05-30 06:48:07 +02:00
|
|
|
squash=
|
2010-01-09 19:55:35 +01:00
|
|
|
message=
|
2009-04-24 20:13:34 +02:00
|
|
|
|
|
|
|
debug()
|
2009-04-27 00:06:08 +02:00
|
|
|
{
|
|
|
|
if [ -n "$debug" ]; then
|
|
|
|
echo "$@" >&2
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
say()
|
2009-04-24 20:13:34 +02:00
|
|
|
{
|
|
|
|
if [ -z "$quiet" ]; then
|
|
|
|
echo "$@" >&2
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-04-24 20:24:38 +02:00
|
|
|
assert()
|
|
|
|
{
|
|
|
|
if "$@"; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
die "assertion failed: " "$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-24 20:13:34 +02:00
|
|
|
#echo "Options: $*"
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
opt="$1"
|
|
|
|
shift
|
|
|
|
case "$opt" in
|
|
|
|
-q) quiet=1 ;;
|
2009-04-27 00:06:08 +02:00
|
|
|
-d) debug=1 ;;
|
2009-04-26 14:59:12 +02:00
|
|
|
--annotate) annotate="$1"; shift ;;
|
|
|
|
--no-annotate) annotate= ;;
|
2009-05-30 07:05:43 +02:00
|
|
|
-b) branch="$1"; shift ;;
|
2010-01-06 23:11:43 +01:00
|
|
|
-p) prefix="$1"; shift ;;
|
2010-01-09 19:55:35 +01:00
|
|
|
-m) message="$1"; shift ;;
|
2009-04-25 04:57:14 +02:00
|
|
|
--no-prefix) prefix= ;;
|
2009-04-24 21:48:41 +02:00
|
|
|
--onto) onto="$1"; shift ;;
|
2009-04-25 04:36:06 +02:00
|
|
|
--no-onto) onto= ;;
|
2009-04-24 21:48:41 +02:00
|
|
|
--rejoin) rejoin=1 ;;
|
2009-04-25 04:36:06 +02:00
|
|
|
--no-rejoin) rejoin= ;;
|
|
|
|
--ignore-joins) ignore_joins=1 ;;
|
|
|
|
--no-ignore-joins) ignore_joins= ;;
|
2009-05-30 06:48:07 +02:00
|
|
|
--squash) squash=1 ;;
|
|
|
|
--no-squash) squash= ;;
|
2009-04-24 20:13:34 +02:00
|
|
|
--) break ;;
|
2009-05-30 07:05:43 +02:00
|
|
|
*) die "Unexpected option: $opt" ;;
|
2009-04-24 20:13:34 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
command="$1"
|
|
|
|
shift
|
|
|
|
case "$command" in
|
2009-04-25 05:41:19 +02:00
|
|
|
add|merge|pull) default= ;;
|
2009-04-25 05:28:30 +02:00
|
|
|
split) default="--default HEAD" ;;
|
2009-04-24 20:13:34 +02:00
|
|
|
*) die "Unknown command '$command'" ;;
|
|
|
|
esac
|
|
|
|
|
2009-04-25 04:57:14 +02:00
|
|
|
if [ -z "$prefix" ]; then
|
|
|
|
die "You must provide the --prefix option."
|
|
|
|
fi
|
2009-10-02 21:22:15 +02:00
|
|
|
dir="$(dirname "$prefix/.")"
|
2009-04-25 04:57:14 +02:00
|
|
|
|
2009-04-25 05:41:19 +02:00
|
|
|
if [ "$command" != "pull" ]; then
|
|
|
|
revs=$(git rev-parse $default --revs-only "$@") || exit $?
|
|
|
|
dirs="$(git rev-parse --no-revs --no-flags "$@")" || exit $?
|
|
|
|
if [ -n "$dirs" ]; then
|
|
|
|
die "Error: Use --prefix instead of bare filenames."
|
|
|
|
fi
|
2009-04-24 20:13:34 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
debug "command: {$command}"
|
|
|
|
debug "quiet: {$quiet}"
|
|
|
|
debug "revs: {$revs}"
|
|
|
|
debug "dir: {$dir}"
|
2009-04-25 05:41:19 +02:00
|
|
|
debug "opts: {$*}"
|
2009-04-25 05:28:30 +02:00
|
|
|
debug
|
2009-04-24 20:13:34 +02:00
|
|
|
|
|
|
|
cache_setup()
|
|
|
|
{
|
2009-04-24 20:24:38 +02:00
|
|
|
cachedir="$GIT_DIR/subtree-cache/$$"
|
2009-04-24 20:13:34 +02:00
|
|
|
rm -rf "$cachedir" || die "Can't delete old cachedir: $cachedir"
|
|
|
|
mkdir -p "$cachedir" || die "Can't create new cachedir: $cachedir"
|
|
|
|
debug "Using cachedir: $cachedir" >&2
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_get()
|
|
|
|
{
|
|
|
|
for oldrev in $*; do
|
|
|
|
if [ -r "$cachedir/$oldrev" ]; then
|
|
|
|
read newrev <"$cachedir/$oldrev"
|
|
|
|
echo $newrev
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_set()
|
|
|
|
{
|
|
|
|
oldrev="$1"
|
|
|
|
newrev="$2"
|
2009-04-24 21:48:41 +02:00
|
|
|
if [ "$oldrev" != "latest_old" \
|
|
|
|
-a "$oldrev" != "latest_new" \
|
|
|
|
-a -e "$cachedir/$oldrev" ]; then
|
2009-04-24 20:13:34 +02:00
|
|
|
die "cache for $oldrev already exists!"
|
|
|
|
fi
|
|
|
|
echo "$newrev" >"$cachedir/$oldrev"
|
|
|
|
}
|
|
|
|
|
2009-05-30 07:05:43 +02:00
|
|
|
rev_exists()
|
|
|
|
{
|
|
|
|
if git rev-parse "$1" >/dev/null 2>&1; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-01-09 19:56:05 +01:00
|
|
|
rev_is_descendant_of_branch()
|
|
|
|
{
|
|
|
|
newrev="$1"
|
|
|
|
branch="$2"
|
|
|
|
branch_hash=$(git rev-parse $branch)
|
|
|
|
match=$(git rev-list $newrev | grep $branch_hash)
|
|
|
|
|
|
|
|
if [ -n "$match" ]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-04-25 06:06:45 +02:00
|
|
|
# if a commit doesn't have a parent, this might not work. But we only want
|
|
|
|
# to remove the parent from the rev-list, and since it doesn't exist, it won't
|
|
|
|
# be there anyway, so do nothing in that case.
|
|
|
|
try_remove_previous()
|
|
|
|
{
|
2009-05-30 07:05:43 +02:00
|
|
|
if rev_exists "$1^"; then
|
2009-04-25 06:06:45 +02:00
|
|
|
echo "^$1^"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-05-30 09:18:27 +02:00
|
|
|
find_latest_squash()
|
|
|
|
{
|
2009-05-30 10:11:43 +02:00
|
|
|
debug "Looking for latest squash ($dir)..."
|
2009-05-30 09:18:27 +02:00
|
|
|
dir="$1"
|
2009-05-30 10:11:43 +02:00
|
|
|
sq=
|
|
|
|
main=
|
|
|
|
sub=
|
2009-10-02 21:22:15 +02:00
|
|
|
git log --grep="^git-subtree-dir: $dir/*\$" \
|
2009-05-30 09:18:27 +02:00
|
|
|
--pretty=format:'START %H%n%s%n%n%b%nEND%n' HEAD |
|
|
|
|
while read a b junk; do
|
2009-05-30 10:11:43 +02:00
|
|
|
debug "$a $b $junk"
|
|
|
|
debug "{{$sq/$main/$sub}}"
|
2009-05-30 09:18:27 +02:00
|
|
|
case "$a" in
|
|
|
|
START) sq="$b" ;;
|
|
|
|
git-subtree-mainline:) main="$b" ;;
|
|
|
|
git-subtree-split:) sub="$b" ;;
|
|
|
|
END)
|
|
|
|
if [ -n "$sub" ]; then
|
|
|
|
if [ -n "$main" ]; then
|
|
|
|
# a rejoin commit?
|
|
|
|
# Pretend its sub was a squash.
|
|
|
|
sq="$sub"
|
|
|
|
fi
|
|
|
|
debug "Squash found: $sq $sub"
|
|
|
|
echo "$sq" "$sub"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
sq=
|
|
|
|
main=
|
|
|
|
sub=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2009-04-24 22:48:08 +02:00
|
|
|
find_existing_splits()
|
|
|
|
{
|
|
|
|
debug "Looking for prior splits..."
|
|
|
|
dir="$1"
|
|
|
|
revs="$2"
|
2009-05-30 10:11:43 +02:00
|
|
|
main=
|
|
|
|
sub=
|
2009-10-02 21:22:15 +02:00
|
|
|
git log --grep="^git-subtree-dir: $dir/*\$" \
|
2009-05-30 09:33:39 +02:00
|
|
|
--pretty=format:'START %H%n%s%n%n%b%nEND%n' $revs |
|
2009-04-24 22:48:08 +02:00
|
|
|
while read a b junk; do
|
|
|
|
case "$a" in
|
2009-10-02 22:09:09 +02:00
|
|
|
START) sq="$b" ;;
|
2009-04-24 22:48:08 +02:00
|
|
|
git-subtree-mainline:) main="$b" ;;
|
|
|
|
git-subtree-split:) sub="$b" ;;
|
2009-05-30 07:28:20 +02:00
|
|
|
END)
|
2009-10-02 22:09:09 +02:00
|
|
|
debug " Main is: '$main'"
|
2009-05-30 09:33:39 +02:00
|
|
|
if [ -z "$main" -a -n "$sub" ]; then
|
|
|
|
# squash commits refer to a subtree
|
2009-10-02 22:09:09 +02:00
|
|
|
debug " Squash: $sq from $sub"
|
2009-05-30 09:33:39 +02:00
|
|
|
cache_set "$sq" "$sub"
|
|
|
|
fi
|
2009-04-24 22:48:08 +02:00
|
|
|
if [ -n "$main" -a -n "$sub" ]; then
|
|
|
|
debug " Prior: $main -> $sub"
|
|
|
|
cache_set $main $sub
|
2009-04-25 06:06:45 +02:00
|
|
|
try_remove_previous "$main"
|
|
|
|
try_remove_previous "$sub"
|
2009-04-24 22:48:08 +02:00
|
|
|
fi
|
2009-05-30 07:28:20 +02:00
|
|
|
main=
|
|
|
|
sub=
|
2009-04-24 22:48:08 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2009-04-24 20:45:02 +02:00
|
|
|
copy_commit()
|
|
|
|
{
|
2009-05-30 06:47:59 +02:00
|
|
|
# We're going to set some environment vars here, so
|
2009-04-24 20:45:02 +02:00
|
|
|
# do it in a subshell to get rid of them safely later
|
2009-04-26 22:53:57 +02:00
|
|
|
debug copy_commit "{$1}" "{$2}" "{$3}"
|
2009-04-24 20:45:02 +02:00
|
|
|
git log -1 --pretty=format:'%an%n%ae%n%ad%n%cn%n%ce%n%cd%n%s%n%n%b' "$1" |
|
|
|
|
(
|
|
|
|
read GIT_AUTHOR_NAME
|
|
|
|
read GIT_AUTHOR_EMAIL
|
|
|
|
read GIT_AUTHOR_DATE
|
|
|
|
read GIT_COMMITTER_NAME
|
|
|
|
read GIT_COMMITTER_EMAIL
|
|
|
|
read GIT_COMMITTER_DATE
|
2009-04-24 21:48:41 +02:00
|
|
|
export GIT_AUTHOR_NAME \
|
|
|
|
GIT_AUTHOR_EMAIL \
|
|
|
|
GIT_AUTHOR_DATE \
|
|
|
|
GIT_COMMITTER_NAME \
|
|
|
|
GIT_COMMITTER_EMAIL \
|
|
|
|
GIT_COMMITTER_DATE
|
2009-04-26 14:59:12 +02:00
|
|
|
(echo -n "$annotate"; cat ) |
|
2009-04-24 20:45:02 +02:00
|
|
|
git commit-tree "$2" $3 # reads the rest of stdin
|
|
|
|
) || die "Can't copy commit $1"
|
|
|
|
}
|
|
|
|
|
2009-04-25 05:28:30 +02:00
|
|
|
add_msg()
|
|
|
|
{
|
|
|
|
dir="$1"
|
|
|
|
latest_old="$2"
|
|
|
|
latest_new="$3"
|
2010-01-09 19:55:35 +01:00
|
|
|
if [ -n "$message" ]; then
|
|
|
|
commit_message="$message"
|
|
|
|
else
|
|
|
|
commit_message="Add '$dir/' from commit '$latest_new'"
|
|
|
|
fi
|
2009-04-25 05:28:30 +02:00
|
|
|
cat <<-EOF
|
2010-01-09 19:55:35 +01:00
|
|
|
$commit_message
|
2009-04-25 05:28:30 +02:00
|
|
|
|
|
|
|
git-subtree-dir: $dir
|
|
|
|
git-subtree-mainline: $latest_old
|
|
|
|
git-subtree-split: $latest_new
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2010-01-09 19:55:35 +01:00
|
|
|
add_squashed_msg()
|
|
|
|
{
|
|
|
|
if [ -n "$message" ]; then
|
|
|
|
echo "$message"
|
|
|
|
else
|
|
|
|
echo "Merge commit '$1' as '$2'"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-05-30 07:28:20 +02:00
|
|
|
rejoin_msg()
|
2009-04-24 21:48:41 +02:00
|
|
|
{
|
|
|
|
dir="$1"
|
|
|
|
latest_old="$2"
|
|
|
|
latest_new="$3"
|
2010-01-09 19:55:35 +01:00
|
|
|
if [ -n "$message" ]; then
|
|
|
|
commit_message="$message"
|
|
|
|
else
|
|
|
|
commit_message="Split '$dir/' into commit '$latest_new'"
|
|
|
|
fi
|
2009-04-24 21:48:41 +02:00
|
|
|
cat <<-EOF
|
2010-01-09 19:55:35 +01:00
|
|
|
$message
|
2009-04-24 21:48:41 +02:00
|
|
|
|
|
|
|
git-subtree-dir: $dir
|
2009-04-24 22:48:08 +02:00
|
|
|
git-subtree-mainline: $latest_old
|
|
|
|
git-subtree-split: $latest_new
|
2009-04-24 21:48:41 +02:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2009-05-30 09:18:27 +02:00
|
|
|
squash_msg()
|
|
|
|
{
|
|
|
|
dir="$1"
|
|
|
|
oldsub="$2"
|
|
|
|
newsub="$3"
|
|
|
|
newsub_short=$(git rev-parse --short "$newsub")
|
|
|
|
|
2009-05-30 10:11:43 +02:00
|
|
|
if [ -n "$oldsub" ]; then
|
|
|
|
oldsub_short=$(git rev-parse --short "$oldsub")
|
|
|
|
echo "Squashed '$dir/' changes from $oldsub_short..$newsub_short"
|
|
|
|
echo
|
|
|
|
git log --pretty=tformat:'%h %s' "$oldsub..$newsub"
|
|
|
|
git log --pretty=tformat:'REVERT: %h %s' "$newsub..$oldsub"
|
|
|
|
else
|
|
|
|
echo "Squashed '$dir/' content from commit $newsub_short"
|
|
|
|
fi
|
2009-05-30 09:18:27 +02:00
|
|
|
|
2009-05-30 10:11:43 +02:00
|
|
|
echo
|
|
|
|
echo "git-subtree-dir: $dir"
|
|
|
|
echo "git-subtree-split: $newsub"
|
2009-05-30 09:18:27 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 03:49:19 +02:00
|
|
|
toptree_for_commit()
|
2009-04-24 23:53:10 +02:00
|
|
|
{
|
2009-04-25 03:49:19 +02:00
|
|
|
commit="$1"
|
|
|
|
git log -1 --pretty=format:'%T' "$commit" -- || exit $?
|
|
|
|
}
|
|
|
|
|
|
|
|
subtree_for_commit()
|
|
|
|
{
|
|
|
|
commit="$1"
|
|
|
|
dir="$2"
|
|
|
|
git ls-tree "$commit" -- "$dir" |
|
2009-04-24 23:53:10 +02:00
|
|
|
while read mode type tree name; do
|
|
|
|
assert [ "$name" = "$dir" ]
|
2009-09-30 14:29:42 +02:00
|
|
|
assert [ "$type" = "tree" ]
|
2009-04-24 23:53:10 +02:00
|
|
|
echo $tree
|
|
|
|
break
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
tree_changed()
|
|
|
|
{
|
|
|
|
tree=$1
|
|
|
|
shift
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
return 0 # weird parents, consider it changed
|
|
|
|
else
|
2009-04-25 03:49:19 +02:00
|
|
|
ptree=$(toptree_for_commit $1)
|
2009-04-24 23:53:10 +02:00
|
|
|
if [ "$ptree" != "$tree" ]; then
|
|
|
|
return 0 # changed
|
|
|
|
else
|
|
|
|
return 1 # not changed
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-05-30 09:18:27 +02:00
|
|
|
new_squash_commit()
|
|
|
|
{
|
|
|
|
old="$1"
|
|
|
|
oldsub="$2"
|
|
|
|
newsub="$3"
|
|
|
|
tree=$(toptree_for_commit $newsub) || exit $?
|
2009-05-30 10:11:43 +02:00
|
|
|
if [ -n "$old" ]; then
|
|
|
|
squash_msg "$dir" "$oldsub" "$newsub" |
|
|
|
|
git commit-tree "$tree" -p "$old" || exit $?
|
|
|
|
else
|
|
|
|
squash_msg "$dir" "" "$newsub" |
|
|
|
|
git commit-tree "$tree" || exit $?
|
|
|
|
fi
|
2009-05-30 09:18:27 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 04:05:30 +02:00
|
|
|
copy_or_skip()
|
|
|
|
{
|
|
|
|
rev="$1"
|
|
|
|
tree="$2"
|
|
|
|
newparents="$3"
|
|
|
|
assert [ -n "$tree" ]
|
|
|
|
|
2009-04-25 04:36:06 +02:00
|
|
|
identical=
|
2009-04-26 23:07:16 +02:00
|
|
|
nonidentical=
|
2009-04-25 04:36:06 +02:00
|
|
|
p=
|
2009-04-26 22:53:57 +02:00
|
|
|
gotparents=
|
2009-04-25 04:05:30 +02:00
|
|
|
for parent in $newparents; do
|
|
|
|
ptree=$(toptree_for_commit $parent) || exit $?
|
2009-04-26 22:53:57 +02:00
|
|
|
[ -z "$ptree" ] && continue
|
2009-04-25 04:05:30 +02:00
|
|
|
if [ "$ptree" = "$tree" ]; then
|
2009-04-25 04:36:06 +02:00
|
|
|
# an identical parent could be used in place of this rev.
|
|
|
|
identical="$parent"
|
2009-04-26 23:07:16 +02:00
|
|
|
else
|
|
|
|
nonidentical="$parent"
|
2009-04-25 04:36:06 +02:00
|
|
|
fi
|
2009-04-26 22:53:57 +02:00
|
|
|
|
|
|
|
# sometimes both old parents map to the same newparent;
|
|
|
|
# eliminate duplicates
|
|
|
|
is_new=1
|
|
|
|
for gp in $gotparents; do
|
|
|
|
if [ "$gp" = "$parent" ]; then
|
|
|
|
is_new=
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ -n "$is_new" ]; then
|
|
|
|
gotparents="$gotparents $parent"
|
2009-04-25 04:05:30 +02:00
|
|
|
p="$p -p $parent"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-04-26 23:44:18 +02:00
|
|
|
if [ -n "$identical" ]; then
|
2009-04-25 04:36:06 +02:00
|
|
|
echo $identical
|
|
|
|
else
|
|
|
|
copy_commit $rev $tree "$p" || exit $?
|
|
|
|
fi
|
2009-04-25 04:05:30 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 05:41:19 +02:00
|
|
|
ensure_clean()
|
2009-04-25 05:28:30 +02:00
|
|
|
{
|
|
|
|
if ! git diff-index HEAD --exit-code --quiet; then
|
|
|
|
die "Working tree has modifications. Cannot add."
|
|
|
|
fi
|
|
|
|
if ! git diff-index --cached HEAD --exit-code --quiet; then
|
|
|
|
die "Index has modifications. Cannot add."
|
|
|
|
fi
|
2009-04-25 05:41:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd_add()
|
|
|
|
{
|
|
|
|
if [ -e "$dir" ]; then
|
|
|
|
die "'$dir' already exists. Cannot add."
|
|
|
|
fi
|
|
|
|
ensure_clean
|
|
|
|
|
2009-04-25 05:28:30 +02:00
|
|
|
set -- $revs
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
die "You must provide exactly one revision. Got: '$revs'"
|
|
|
|
fi
|
|
|
|
rev="$1"
|
|
|
|
|
|
|
|
debug "Adding $dir as '$rev'..."
|
|
|
|
git read-tree --prefix="$dir" $rev || exit $?
|
2009-08-26 16:43:43 +02:00
|
|
|
git checkout -- "$dir" || exit $?
|
2009-04-25 05:28:30 +02:00
|
|
|
tree=$(git write-tree) || exit $?
|
|
|
|
|
|
|
|
headrev=$(git rev-parse HEAD) || exit $?
|
|
|
|
if [ -n "$headrev" -a "$headrev" != "$rev" ]; then
|
|
|
|
headp="-p $headrev"
|
|
|
|
else
|
|
|
|
headp=
|
|
|
|
fi
|
2009-05-30 10:11:43 +02:00
|
|
|
|
|
|
|
if [ -n "$squash" ]; then
|
|
|
|
rev=$(new_squash_commit "" "" "$rev") || exit $?
|
2010-01-09 19:55:35 +01:00
|
|
|
commit=$(add_squashed_msg "$rev" "$dir" |
|
2009-05-30 10:11:43 +02:00
|
|
|
git commit-tree $tree $headp -p "$rev") || exit $?
|
|
|
|
else
|
|
|
|
commit=$(add_msg "$dir" "$headrev" "$rev" |
|
|
|
|
git commit-tree $tree $headp -p "$rev") || exit $?
|
|
|
|
fi
|
2009-04-25 05:28:30 +02:00
|
|
|
git reset "$commit" || exit $?
|
2009-05-30 10:11:43 +02:00
|
|
|
|
|
|
|
say "Added dir '$dir'"
|
2009-04-25 05:28:30 +02:00
|
|
|
}
|
|
|
|
|
2009-04-24 20:13:34 +02:00
|
|
|
cmd_split()
|
|
|
|
{
|
|
|
|
debug "Splitting $dir..."
|
|
|
|
cache_setup || exit $?
|
|
|
|
|
2009-04-24 23:05:14 +02:00
|
|
|
if [ -n "$onto" ]; then
|
2009-04-25 03:35:50 +02:00
|
|
|
debug "Reading history for --onto=$onto..."
|
2009-04-24 23:05:14 +02:00
|
|
|
git rev-list $onto |
|
|
|
|
while read rev; do
|
|
|
|
# the 'onto' history is already just the subdir, so
|
|
|
|
# any parent we find there can be used verbatim
|
2009-04-24 23:42:33 +02:00
|
|
|
debug " cache: $rev"
|
2009-04-24 23:05:14 +02:00
|
|
|
cache_set $rev $rev
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-04-25 04:36:06 +02:00
|
|
|
if [ -n "$ignore_joins" ]; then
|
|
|
|
unrevs=
|
|
|
|
else
|
|
|
|
unrevs="$(find_existing_splits "$dir" "$revs")"
|
|
|
|
fi
|
2009-04-24 22:48:08 +02:00
|
|
|
|
2009-04-26 21:54:42 +02:00
|
|
|
# We can't restrict rev-list to only $dir here, because some of our
|
|
|
|
# parents have the $dir contents the root, and those won't match.
|
|
|
|
# (and rev-list --follow doesn't seem to solve this)
|
2009-04-27 00:06:08 +02:00
|
|
|
grl='git rev-list --reverse --parents $revs $unrevs'
|
|
|
|
revmax=$(eval "$grl" | wc -l)
|
|
|
|
revcount=0
|
|
|
|
createcount=0
|
|
|
|
eval "$grl" |
|
2009-04-24 20:13:34 +02:00
|
|
|
while read rev parents; do
|
2009-04-27 00:06:08 +02:00
|
|
|
revcount=$(($revcount + 1))
|
2010-01-09 19:56:05 +01:00
|
|
|
say -n "$revcount/$revmax ($createcount)
|
|
|
|
"
|
2009-04-24 23:42:33 +02:00
|
|
|
debug "Processing commit: $rev"
|
|
|
|
exists=$(cache_get $rev)
|
2009-04-24 22:48:08 +02:00
|
|
|
if [ -n "$exists" ]; then
|
|
|
|
debug " prior: $exists"
|
|
|
|
continue
|
|
|
|
fi
|
2009-04-27 00:06:08 +02:00
|
|
|
createcount=$(($createcount + 1))
|
2009-04-24 23:42:33 +02:00
|
|
|
debug " parents: $parents"
|
|
|
|
newparents=$(cache_get $parents)
|
|
|
|
debug " newparents: $newparents"
|
2009-04-24 22:48:08 +02:00
|
|
|
|
2009-04-25 03:49:19 +02:00
|
|
|
tree=$(subtree_for_commit $rev "$dir")
|
2009-04-24 23:53:10 +02:00
|
|
|
debug " tree is: $tree"
|
2009-05-30 07:28:20 +02:00
|
|
|
|
|
|
|
# ugly. is there no better way to tell if this is a subtree
|
|
|
|
# vs. a mainline commit? Does it matter?
|
2010-01-09 23:01:39 +01:00
|
|
|
if [ -z $tree ]; then
|
|
|
|
cache_set $rev $rev
|
|
|
|
continue
|
|
|
|
fi
|
2009-04-24 23:53:10 +02:00
|
|
|
|
2009-04-25 04:05:30 +02:00
|
|
|
newrev=$(copy_or_skip "$rev" "$tree" "$newparents") || exit $?
|
2009-04-24 23:53:10 +02:00
|
|
|
debug " newrev is: $newrev"
|
|
|
|
cache_set $rev $newrev
|
|
|
|
cache_set latest_new $newrev
|
|
|
|
cache_set latest_old $rev
|
2009-04-24 20:24:38 +02:00
|
|
|
done || exit $?
|
2009-04-24 21:48:41 +02:00
|
|
|
latest_new=$(cache_get latest_new)
|
|
|
|
if [ -z "$latest_new" ]; then
|
2009-04-24 20:52:27 +02:00
|
|
|
die "No new revisions were found"
|
|
|
|
fi
|
2009-04-24 21:48:41 +02:00
|
|
|
|
|
|
|
if [ -n "$rejoin" ]; then
|
|
|
|
debug "Merging split branch into HEAD..."
|
|
|
|
latest_old=$(cache_get latest_old)
|
|
|
|
git merge -s ours \
|
2009-05-30 07:28:20 +02:00
|
|
|
-m "$(rejoin_msg $dir $latest_old $latest_new)" \
|
2009-05-01 03:57:32 +02:00
|
|
|
$latest_new >&2 || exit $?
|
2009-04-24 21:48:41 +02:00
|
|
|
fi
|
2009-05-30 07:05:43 +02:00
|
|
|
if [ -n "$branch" ]; then
|
2010-01-09 19:56:05 +01:00
|
|
|
if rev_exists "refs/heads/$branch"; then
|
|
|
|
if ! rev_is_descendant_of_branch $latest_new $branch; then
|
|
|
|
die "Branch '$branch' is not an ancestor of commit '$latest_new'."
|
|
|
|
fi
|
|
|
|
action='Updated'
|
|
|
|
else
|
|
|
|
action='Created'
|
|
|
|
fi
|
|
|
|
git update-ref -m 'subtree split' "refs/heads/$branch" $latest_new || exit $?
|
|
|
|
say "$action branch '$branch'"
|
2009-05-30 07:05:43 +02:00
|
|
|
fi
|
2009-04-24 21:48:41 +02:00
|
|
|
echo $latest_new
|
2009-04-24 20:13:34 +02:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd_merge()
|
|
|
|
{
|
2009-04-25 05:41:19 +02:00
|
|
|
ensure_clean
|
|
|
|
|
|
|
|
set -- $revs
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
die "You must provide exactly one revision. Got: '$revs'"
|
|
|
|
fi
|
|
|
|
rev="$1"
|
|
|
|
|
2009-05-30 09:18:27 +02:00
|
|
|
if [ -n "$squash" ]; then
|
|
|
|
first_split="$(find_latest_squash "$dir")"
|
|
|
|
if [ -z "$first_split" ]; then
|
|
|
|
die "Can't squash-merge: '$dir' was never added."
|
|
|
|
fi
|
|
|
|
set $first_split
|
|
|
|
old=$1
|
|
|
|
sub=$2
|
2009-05-30 09:33:17 +02:00
|
|
|
if [ "$sub" = "$rev" ]; then
|
|
|
|
say "Subtree is already at commit $rev."
|
|
|
|
exit 0
|
|
|
|
fi
|
2009-05-30 09:18:27 +02:00
|
|
|
new=$(new_squash_commit "$old" "$sub" "$rev") || exit $?
|
|
|
|
debug "New squash commit: $new"
|
|
|
|
rev="$new"
|
|
|
|
fi
|
|
|
|
|
2010-01-09 19:55:35 +01:00
|
|
|
git merge -s subtree --message="$message" $rev
|
2009-04-25 05:41:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd_pull()
|
|
|
|
{
|
|
|
|
ensure_clean
|
2009-10-03 00:23:54 +02:00
|
|
|
git fetch "$@" || exit $?
|
|
|
|
revs=FETCH_HEAD
|
|
|
|
cmd_merge
|
2009-04-24 20:13:34 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 05:41:19 +02:00
|
|
|
"cmd_$command" "$@"
|