Skip to content

Instantly share code, notes, and snippets.

@TonyWael
Created December 6, 2013 15:16
Show Gist options
  • Save TonyWael/7826305 to your computer and use it in GitHub Desktop.
Save TonyWael/7826305 to your computer and use it in GitHub Desktop.
git commit back to svn awesome
http://linux.die.net/man/1/git-svn
git svn clone http://yoursvnserver/svn --username vcsjones
#make some changes
git add -A
#stage your changes. add -A stages all changes;
#you can stage individial files too or use git add -i for interactive adding
git commit -m "My commit messages"
#repeat makes changes and commit as many times as you want
git svn dcommit
#commit all local commits back to the SVN repository.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment