-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconvert-to-git.sh
executable file
·98 lines (87 loc) · 2.6 KB
/
convert-to-git.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
#!/bin/bash
set -euo pipefail
##
# Handle option parsing. This accepts a single flag -f, denoting whether the
# incremental import should be continued, or the output directory should be
# deleted, starting from scratch.
force=0
if [ $# -gt 0 ] && [ "$1" == "-f" ]; then
force=1
echo "Force option set, removing existing work directory." >&2
fi
current_dir=$(cd "$(dirname "$0")" && pwd)
##
# Build svn2git if necessary.
svn2git=$(command -v svn-all-fast-export 2>&1 || true)
if [ ! -f "$svn2git" ]; then
svn2git_repo=$current_dir/svn2git
svn2git=$svn2git_repo/build/svn-all-fast-export
fi
if [ ! -f "$svn2git" ]; then
# We need qmake, MacPorts has a weird path by default
qmake=$(command -v qmake 2>&1 || true)
if [ -z "$qmake" ] && [ -f "/opt/local/libexec/qt4/bin/qmake" ]; then
qmake="/opt/local/libexec/qt4/bin/qmake"
fi
if [ -z "$qmake" ]; then
echo "qmake not found, cannot continue" >&2
exit 1
fi
# Build svn2git
pushd "$svn2git_repo/" >/dev/null
mkdir -p "build"
cd "build"
cat > ../src/local-config.pri <<-EOF
SVN_INCLUDE = /opt/local/include/subversion-1
SVN_LIBDIR = /opt/local/lib
APR_INCLUDE = /opt/local/include/apr-1
EOF
"$qmake" CONFIG-=app_bundle QMAKE_LFLAGS+="-L/opt/local/lib -stdlib=libc++" QMAKE_CXXFLAGS+="-stdlib=libc++" ..
make
popd >/dev/null
fi
if [ ! -f "$svn2git" ]; then
echo "No path to svn2git set and the build doesn't seem to have produced it, cannot continue" >&2
exit 2
fi
# Configure variables; it seems the input directory must be relative, or
# svn2git will crash at the end.
indir=../repo
outdir=$PWD/git
identity_map=$current_dir/gitconversion.authors
rules=$current_dir/gitconversion.rules
if [ "$force" = 1 ] || [ ! -f "$outdir/lastrev" ]; then
rm -rf "$outdir"
fi
mkdir -p "$outdir"
cd "$outdir"
# Find resume version, if available
resume_from=$(cat lastrev || echo 0)
resume_from=$(( resume_from + 1 ))
max_rev=$(svnlook youngest "$indir")
# Do the export
"$svn2git" \
--identity-map="$identity_map" \
--rules="$rules" \
--add-metadata \
--resume-from "$resume_from" \
--max-rev "$max_rev" \
--stats \
"$indir" || (rm -f "lastrev"; exit 1)
# ... but make sure to delete the lastrev file if something failed, because
# that means we need to start over
# Store the last imported revision, if successful
echo "$max_rev" > "lastrev"
# Compress output repositories
if [ $resume_from -eq 1 ]; then
for repo in "$outdir/"*; do
if [ ! -d "$repo" ]; then
continue
fi
printf "Compressing repository in %s\n" "$repo"
du -sh "$repo"
git -C "$repo" gc --aggressive --prune=all
git -C "$repo" repack -a -d -f --window=250 --depth=250
du -sh "$repo"
done
fi