Is git-svn dcommit after merging in git dangerous? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:24:59Zhttp://stackoverflow.com/feeds/question/190431http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/190431/is-git-svn-dcommit-after-merging-in-git-dangerous9Is git-svn dcommit after merging in git dangerous?Knut Eldhuset2008-10-10T07:38:52Z2009-10-06T16:30:11Z
<p>My motivation for trying out git-svn is the effortless merging and branching. Then I noticed that man git-svn(1) says: </p>
<p>"Running git-merge or git-pull is NOT recommended on a branch you plan to dcommit from. Subversion does not represent merges in any reasonable or useful fashion; so users using Subversion cannot see any merges you've made. Furthermore, if you merge or pull from a git branch that is a mirror of an SVN branch, dcommit may commit to the wrong branch."</p>
<p>Does this mean I cannot create a local branch from svn/trunk (or a branch), hack away, merge back into svn/trunk, then dcommit? I understand that svn users will see the same mess that merges in svn pre 1.5.x have always been, but are there any other drawbacks? That last sentence worries me, too. Do people routinely do these kinds of things?</p>
http://stackoverflow.com/questions/190431/is-git-svn-dcommit-after-merging-in-git-dangerous/190447#19044713Answer by Greg Hewgill for Is git-svn dcommit after merging in git dangerous?Greg Hewgill2008-10-10T07:47:13Z2008-10-10T07:47:13Z<p>Creating local branches is definitely possible with git-svn. As long as you're just using local branches for yourself, and not trying to use git to merge between upstream svn branches, you should be fine.</p>
<p>I have a "master" branch that I use to track the svn server. This is the only branch that I dcommit from. If I'm doing some work, I create a topic branch and work away on it. When I want to commit it, I do the following:</p>
<ol>
<li>Commit everything to the topic branch</li>
<li>git checkout master</li>
<li>git svn rebase</li>
<li>git merge topic_branch</li>
<li>resolve any merge conflicts</li>
<li>git svn dcommit</li>
</ol>
<p>I also have another situation where I need to maintain some local changes (for debugging) that should never be pushed up to svn. For that, I have the above master branch but also a branch called "work" where I normally do work. Topic branches are branched off work. When I want to commit work there, I checkout master and use cherry-pick to pick the commits from the work branch that I want to commit to svn. This is because I want to avoid committing the three local change commits. Then, I dcommit from the master branch and rebase everything.</p>
<p>It is worthwhile running <code>git svn dcommit -n</code> first to make sure that you are about to commit exactly what you intend to commit. Unlike git, rewriting history in svn is hard!</p>
<p>I feel that there must be a better way to merge the change on a topic branch while skipping those local change commits than using cherry-pick, so if anybody has any ideas they would be welcome.</p>
http://stackoverflow.com/questions/190431/is-git-svn-dcommit-after-merging-in-git-dangerous/1526673#15266730Answer by luntain for Is git-svn dcommit after merging in git dangerous?luntain2009-10-06T16:30:11Z2009-10-06T16:30:11Z<p>A safe way to merge svn branches in git is to use git merge --squash. This will create a single commit and stop for you to add a message.</p>
<p>Let's say you have a topic svn branch, called svn-branch.</p>
<pre><code>git svn fetch
git checkout remotes/trunk -b big-merge
git merge --squash svn-branch
</code></pre>
<p>at this point you have all the changes from the svn-branch squashed into one commit waiting in the index</p>
<pre><code>git commit
</code></pre>