Created
December 6, 2013 15:16
-
-
Save TonyWael/7826305 to your computer and use it in GitHub Desktop.
git commit back to svn awesome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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