According to the manual, git dcommit “will create a revision in SVN for each commit in git.” But is there a way to avoid multiple Subversion revisions? That is, to have git merge all changes prior to performing the svn commit?
|
5
|
|
|
|
|
|
If you work on a branch in git, you can Of course, lots of small commits are good, so why would you want to squash them? |
||||||
|
|
|
Ryan Tomayko wrote a bit about
I have a tendency to commit often in git, but don't necessarily want to dcommit every commit to svn, and squashing all my work makes just as little sense. I'm trying it now to reorder and squash a few together into more logical commit units now. |
||
|
|
|
|
The command The syntax is: For example, to modify the previous 5 commits, you can do this:
Or if your SVN branch is called "svn/trunk", then this syntax is good too:
Then a text editor window will pop up. To squash everything, change the first word of every line after the first from "pick" to "squash" (If this sounds confusing- it will make more sense when you see it). Then save and close the editor. You'll then have a chance to edit the commit message for the squashed commit. Among the other things you can do with I use this command constantly; it's a killer feature of Git. |
||
|
|
