cd D:/
Extract Author information
java -jar svn-migration-scripts.jar authors $SVNURL > authors.txt
Clone the SVN Repo
git svn clone --stdlayout --authors-file=authors.txt $SVNURL SVNAsGIT
Clean the new GIT repository
java -Dfile.encoding=utf-8 -jar svn-migration-scripts.jar clean-git --force
Update the authors file
git config svn.authorsfile authors.txt>
Clean the new GIT repository
java -Dfile.encoding=utf-8 -jar svn-migration-scripts.jar clean-git --force
Synchronize the GIT repository
git svn fetch
git svn rebase
convert svn show-ignore file, if any, to .gitignore file
cd SVNAsGIT
git svn show-ignore > .gitignore
git add .gitignore
git commit -m 'Convert svn:ignore properties to .gitignore.'