Resyncâing Subversion in Git
Resync’ing Subversion in Git
Last month, I showed how to put your Subversion data into Git. Now I will briefly describe how to resync the cloned Subversion data in your Git repository, in case you have not fully switched to using Git. cd /data/WebGUIAcme git pull github master
cd acme git svn rebase
M lib/Acme/Cart.pm r123 = 607c50c07af9cdb5d25b27d3dd53344e5b4c8dba (trunk) A sbin/installAcmeCartSuperMagicFeature.pl r124 = 10c2983703d2ebbc2f53481a64aed5d94072bfa7 (trunk)
cd .. git add acme/sbin/installAcmeCartSuperMagicFeature.pl
git commit -a -m “Committing SVN revisions 123 through 124, for super magic cart” git push github master
|

