Given multiple unpushed git commits, is it possible to git-svn dcommit only one of those commits?
e.g. I have commit foo, bar, and baz, but right now I only want to have bar end up in the svn repo. Is this possible?
|
3
|
|||||
|
|
|
git svn dcommit cannot selectively commit bar. if you have directly committed foo, bar and baz on your master branch then you have to do the following to get only bar in svn. Assume bar's commit sha is something like 13abc... and git log master shows all your 3 commits foo, bar and baz.
the wip branch now has foo, bar and baz
now your master branch has none of foo, bar or baz. verify with git log.
the master only gets the bar commit alone.
Suggested Future usage So for git-svn it is preferable not to make commits directly on master branch which is tracking remote svn. do your work on local branches and merge selectively to master before dcommiting. |
||
|
|
|
I have one sort of crusty answer. You can create a new branch with out foo, bar, and baz in it and then So assuming foo, bar, and baz are in branch x and master doesn't have any of them.
If master does have these commits you can reset the head as Sizzler suggests. |
||||
|