Tracking upstream svn changes with git-svn and github?
- by Joseph Turian
How do I track upstream SVN changes using git-svn and github?
I used git-svn to convert an SVN repo to git on github:
$ git svn clone -s http://svn.osqa.net/svnroot/osqa/ osqa
$ cd osqa
$ git remote add origin git@github.com:turian/osqa.git
$ git push origin master
I then made a few changes in my git repo, committed, and pushed to github.
…