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 branch
SVN
$ svn switch http://example.com/svn/branches/<branch>
GIT
$ git checkout <branch>
SVN
$ svn checkout svn+ssh://[email protected]/svn/trunk
GIT
$ git clone ssh://[email protected]/path/to/git-repo.git
SVN
$ svn status
GIT
$ git status
SVN
$ svn add <file>
$ svn commit -m "message"
GIT
$ git add <file>
$ git commit -m "message"
$ git push