Shin'ya M. > Updating rcs with 3 items... done

This commit is contained in:
2025-12-05 09:08:20 +09:00
parent 6c0f2d98a3
commit 72930556f5
4 changed files with 98 additions and 2 deletions

13
svn2fossil Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
# svn2fossil
# Convert a svn repository to fossil
# Requires direct access to the host
for i in fossil svnadmin; do
if ! command -v $i >/dev/null; then
echo "$i: command not found"
exit 1
fi
done
svnadmin dump $1 | fossil import --svn $1.fossil