| SVN | git |
|---|---|
| svn checkout url | git clone url |
| svn update | git pull |
| svnadmin create repo; svn import file://repo | git init; git add .; git commit |
| svn status | git status |
| svn revert path | git checkout path |
| svn add file; svn rm file; svn mv file | git add file; git rm file; git mv file |
| svn commit | git commit -a |