Ben Ahrens

Cheatsheet - Git with Subversion

17 Jan 2013

Previously, I blogged about using Git with Subversion. Sometimes though, I like concise pieces of information, without all the details. For that reason, here is a cheatsheet on the steps for using Git with Subversion:

git svn rebase
git branch new_awesome_feature_branch
git checkout new_awesome_feature_branch
git commit -m "this is best feature ever implemented"
git rebase master
git checkout master
git merge new_awesome_feature_branch
git svn rebase
git svn dcommit
git branch -D new_awesome_feature_branch
comments powered by Disqus