How to track a remote master git-svn into my git repo without cloning.
git remote add origin https://myuser@myserver.com/davgitrepo git remote update origin git branch --track origin
Updating my git-svn repo with
git-svn rebase
Then update the git copy with
git push origin
