Add scripts/vnc-client to git-migration.
[invirt/scripts/git-migration.git] / git-migrate-fast.sh
index 8b70fa4..1f977bd 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/bash
 set -e
 
+SVN=${1:-/mit/xvm/svn}
+
 mako-render rules.mako > rules
 
 rm git -rf
@@ -11,11 +13,53 @@ sed -n 's/^create repository // p' ../rules | while read repo; do
     mkdir -p "$repo" && GIT_DIR="$repo" git init --bare
 done
 
-echo run > ../run.gdb
-gdb -batch -x ../run.gdb --args svn-all-fast-export ../rules /home/anders/xvm/svn
+svn-all-fast-export --identity-map ../authors ../rules "$SVN"
 
 sed -n 's/^create repository // p' ../rules | while read repo; do
-    ! [ -e "$repo/refs/heads/tags" ] || \
-       cp -a "$repo/refs/heads/tags/." "$repo/refs/tags" && \
-       rm -rf "$repo/refs/heads/tags"
+    if [ -e "$repo/refs/heads/tags" ]; then
+        cp -a "$repo/refs/heads/tags/." "$repo/refs/tags"
+        rm -rf "$repo/refs/heads/tags"
+    fi
 done
+
+pushd packages/invirt-remote.git
+echo $(git rev-parse 0.2.0 invirt-remote-server invirt-remote-host) >> info/grafts
+git filter-branch --tag-name-filter cat -- ^invirt-remote-server ^invirt-remote-host --all
+rm -rf info/grafts refs/original refs/heads/invirt-remote-server refs/heads/invirt-remote-host
+popd
+
+pushd packages/invirt-console.git
+echo $(git rev-parse 0.2.0 0.2.0^ invirt-console-host) >> info/grafts
+git filter-branch --tag-name-filter cat -- ^0.2.0^ ^invirt-console-host --all
+rm -rf info/grafts refs/original refs/heads/invirt-console-host
+popd
+
+pushd packages/invirt-dns.git
+echo $(git rev-parse sipb-xen-dns/1~10 sipb-xen-dns/1~11 dns) >> info/grafts
+git filter-branch --tag-name-filter cat -- ^sipb-xen-dns/1~11 ^dns --all
+rm -rf info/grafts refs/original refs/heads/dns
+popd
+
+pushd packages/invirt-database-server.git
+git fetch ../invirt-database.git refs/tags/0.0.1:refs/heads/tmp
+echo $(git rev-parse 0.0.1 refs/heads/tmp^) >> info/grafts
+git filter-branch --tag-name-filter cat -- ^refs/heads/tmp --all
+rm -rf info/grafts refs/original refs/heads/tmp
+popd
+
+pushd packages/libyaml.git
+git fetch git://andersk.mit.edu/libyaml.git refs/tags/upstream/0.1.1:refs/tags/upstream/0.1.1 refs/tags/debian/0.1.1-1:refs/tags/debian/0.1.1-1
+git branch upstream upstream/0.1.1
+echo $(git rev-parse 0.1.1-1_andersk1 debian/0.1.1-1^0) >> info/grafts
+git filter-branch --tag-name-filter cat -- ^debian/0.1.1-1 --all
+rm -rf info/grafts refs/original
+popd
+
+pushd packages/python-routefs.git
+git fetch -t git://github.com/ebroder/python-routefs.git
+git branch -f upstream 1.0.1
+git branch -f master 1.0.1-1
+popd
+
+echo
+echo 'The Git migration was successful.'