We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd1530 commit 8ee0be9Copy full SHA for 8ee0be9
1 file changed
git-cvs-synchronizer.sh
@@ -53,8 +53,14 @@ cvs2git () {
53
test -d "$CVS2SVN" ||
54
git clone git://fiji.sc/cvs2svn "$CVS2SVN"
55
}
56
+ ENCODING=
57
+ case "$CVSMODULE" in
58
+ oprofile)
59
+ ENCODING=--encoding=iso-8859-1
60
+ ;;
61
+ esac
62
"$CVS2SVN"/cvs2git --blobfile=cvs.blobs --dumpfile=cvs.dump \
- --username=git-synchronizer cvs-mirror/
63
+ --username=git-synchronizer $ENCODING cvs-mirror/
64
cat cvs.blobs cvs.dump |
65
git fast-import
66
0 commit comments