Just starting to use git currently using subversion … so here are some basic notes:
- create local git repo: git svn clone -s http://svnrepo
- get latest from svn: git svn fetch then git svn rebase
- make local changes: git add and git commit -m “message”
- push to svn: git svn dcommit
(http://www.lostechies.com/blogs/scottcreynolds/archive/2009/05/05/getting-up-and-running-on-git-svn-5-minute-quickstart.aspx)