2009-04-25 03:35:50 +02:00
|
|
|
#!/bin/bash -x
|
2009-04-26 21:55:56 +02:00
|
|
|
. shellopts.sh
|
|
|
|
set -e
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create()
|
|
|
|
{
|
2009-04-26 21:55:56 +02:00
|
|
|
echo "$1" >"$1"
|
|
|
|
git add "$1"
|
2009-04-26 14:59:12 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 03:35:50 +02:00
|
|
|
|
|
|
|
rm -rf mainline subproj
|
|
|
|
mkdir mainline subproj
|
|
|
|
|
|
|
|
cd subproj
|
|
|
|
git init
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create sub1
|
|
|
|
git commit -m 'sub1'
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch sub1
|
|
|
|
git branch -m master subproj
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create sub2
|
|
|
|
git commit -m 'sub2'
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch sub2
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create sub3
|
|
|
|
git commit -m 'sub3'
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch sub3
|
|
|
|
|
|
|
|
cd ../mainline
|
|
|
|
git init
|
2009-04-26 14:59:12 +02:00
|
|
|
create main4
|
|
|
|
git commit -m 'main4'
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch -m master mainline
|
|
|
|
|
|
|
|
git fetch ../subproj sub1
|
|
|
|
git branch sub1 FETCH_HEAD
|
2009-04-25 06:07:04 +02:00
|
|
|
git subtree add --prefix=subdir FETCH_HEAD
|
2009-04-25 03:35:50 +02:00
|
|
|
|
2009-04-25 06:07:04 +02:00
|
|
|
# this shouldn't actually do anything, since FETCH_HEAD is already a parent
|
2009-04-25 03:35:50 +02:00
|
|
|
git merge -m 'merge -s -ours' -s ours FETCH_HEAD
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create subdir/main-sub5
|
|
|
|
git commit -m 'main-sub5'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create main6
|
|
|
|
git commit -m 'main6 boring'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create subdir/main-sub7
|
|
|
|
git commit -m 'main-sub7'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
|
|
|
git fetch ../subproj sub2
|
|
|
|
git branch sub2 FETCH_HEAD
|
2009-04-25 06:07:04 +02:00
|
|
|
git subtree merge --prefix=subdir FETCH_HEAD
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch pre-split
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
split1=$(git subtree split --annotate='*' --prefix subdir --onto FETCH_HEAD --rejoin)
|
2009-04-25 03:35:50 +02:00
|
|
|
echo "split1={$split1}"
|
|
|
|
git branch split1 "$split1"
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create subdir/main-sub8
|
|
|
|
git commit -m 'main-sub8'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
|
|
|
cd ../subproj
|
|
|
|
git fetch ../mainline split1
|
|
|
|
git branch split1 FETCH_HEAD
|
|
|
|
git merge FETCH_HEAD
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create sub9
|
|
|
|
git commit -m 'sub9'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
|
|
|
cd ../mainline
|
2009-04-26 14:59:12 +02:00
|
|
|
split2=$(git subtree split --annotate='*' --prefix subdir --rejoin)
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch split2 "$split2"
|
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
create subdir/main-sub10
|
|
|
|
git commit -m 'main-sub10'
|
2009-04-25 03:35:50 +02:00
|
|
|
|
2009-04-26 14:59:12 +02:00
|
|
|
split3=$(git subtree split --annotate='*' --prefix subdir --rejoin)
|
2009-04-25 03:35:50 +02:00
|
|
|
git branch split3 "$split3"
|
|
|
|
|
|
|
|
cd ../subproj
|
|
|
|
git fetch ../mainline split3
|
|
|
|
git branch split3 FETCH_HEAD
|
|
|
|
git merge FETCH_HEAD
|
|
|
|
git branch subproj-merge-split3
|
|
|
|
|
|
|
|
cd ../mainline
|
|
|
|
git fetch ../subproj subproj-merge-split3
|
|
|
|
git branch subproj-merge-split3 FETCH_HEAD
|
2009-04-25 06:07:04 +02:00
|
|
|
git subtree pull --prefix=subdir ../subproj subproj-merge-split3
|