Skip to content

Instantly share code, notes, and snippets.

@atnan
Created July 10, 2009 01:55
Show Gist options
  • Save atnan/144187 to your computer and use it in GitHub Desktop.
Save atnan/144187 to your computer and use it in GitHub Desktop.
# Checking out
git svn init <svn url> <checkout directory>
git svn fetch
git repack -d
# Working
git checkout -b some-feature
git commit -a -m "Some feature"
# Commiting
git checkout master
git svn rebase
git merge some-feature
git svn dcommit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment