Skip to content

Instantly share code, notes, and snippets.

@mpdehnel
Last active October 29, 2015 09:35
Show Gist options
  • Save mpdehnel/16a5a23aeb1086004839 to your computer and use it in GitHub Desktop.
Save mpdehnel/16a5a23aeb1086004839 to your computer and use it in GitHub Desktop.
git-svn usage
  1. git svn clone https://maxheadroom.cs.ox.ac.uk/svn/papers/
  2. Do some stuff.
  3. Tell SVN which (changed) files you want to store on the server: git add myfile.tex mybiblio.bib
  4. Commit it: git commit -m 'my commit message’
  5. Push it up to the SVN server: git svn dcommit
  6. Check the logs if you like: git log
  7. Get the latest changes from the server that other people made: git svn rebase
  8. Go to 2.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment