SVN
$ svnadmin create /path/to/repo
$ svn import /path/to/local/project http://example.com/svn/truck -m "Initial import"GIT
$ git init
$ git add .
$ git commit -m "Initial commit"SVN
$ svn copy http://example.com/svn/trunk/http://example.com/svn/branches/<new-branch>GIT
$ git branch <new-branch>SVN
$ svn list http://example.com/svn/branches/GIT
$ git branchSVN
$ svn switch http://example.com/svn/branches/<branch>GIT
$ git checkout <branch>SVN
$ svn checkout svn+ssh://[email protected]/svn/trunkGIT
$ git clone ssh://[email protected]/path/to/git-repo.gitSVN
$ svn statusGIT
$ git statusSVN
$ svn add <file>
$ svn commit -m "message"GIT
$ git add <file>
$ git commit -m "message"
$ git push