Currently, when I run git svn dcommit git creates a separate commit in SVN for every local commit I've made since last syncing with SVN. Is there any way for dcommit to instead combine all my recent local commits into one commit for SVN?
|
feedback
|
should bring you to the menu where you can pick commits or squash them all into 1 commit in order to avoid polluting your svn repository. This is a really good (but short) resource on working with git-svn. | |||||||||||
feedback
|
|
No, but you can squish all the commits together pretty easily. For the following example, I'm going to assume you're on the
Instead of using a temporary tag you could also just use the reflog (i.e. use | |||
feedback
|
|
A simpler way could be (if you have multiple commits piled up on your local system):
| |||||||
feedback
|
|
When I work with git-svn and want a series of git commits to show up as a single commit, I work on a topic branch and then do a non-fast-forward First, rebase your branch against svn and make sure local master is up-to-date:
Then switch to master, merge and dcommit:
This will show up as a single commit in Subversion but you will still have your local history that got you to that commit.
| |||
|
feedback
|
|
This worked for me--squashed several commits into one commit and then dcommitted to svn: http://www.gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html | |||
|
feedback
|
|
that is not working for me. I use
dcommitting to trunkwill commit all 336 commits. resetting, tagging, and squashing as described in answer #2: Combine Local Git Commits into One Commit with git-svn will work, but on next "merge" you will have some trouble to get all commits together again! the one and only that is working for me:
to get all commits from master to svn without loosing history for future merging with the same command ~Marcel | |||
|
feedback
|