enricorossi.org

Enrico Rossi


Articles tagged with svn

Git svn track remote repo

Tags: git, svn, tips, vcs

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
Read more...