I have a number of locally committed patches in my git-svn repo which I haven't yet commited to our svn repo. A normal "git svn dcommit" will commit all of these patches to svn. I would like to commit only some of my patches (simple bug fixes), but not others (untested major changes). How can I do this with git svn?
|
I've been following the procedure here: http://fredericiana.com/2009/12/31/partial-svn-dcommit-with-git/ If you're comfortable rebasing, it works pretty well. |
|||
|
|
|
Here's what I ended up doing. The starting point is the "master" branch synced with svn, with all of my local patches on top.
|
|||||
|
|
With git, you're not actually supposed to operate on single changesets. The best approach I know is to create local branches for any non-trivial work. This way, your untested major changes will end up in different branches of your git repository, and you'll be able to differ them quite easily. If this is the problem you have at the moment you can probably create create a new branch from the point you last updated from svn and then use git-cherry-pick to transfer your simple bug fixes to this new branch, from which you can then dcommit to svn. From a more long-term point of view it's best to have your own "master" branch made from subversion trunk, and then either:
|
|||
|
|