vote up 3 vote down star

Is it possible to group a number of commited files together (as a single commit) after you've already committed them to the repository in Svn?

It seems I always forget a file or two after I've committed a bunch them (when not using subeclipse) and I was just wondering if anyone knew if this was possible or not.

flag

80% accept rate

5 Answers

vote up 1 vote down check

I find the best solution to use a higher level tool to group revisions together and track changes.

We use redmine to document all tasks, and our svn revisions are automatically stamped against that. Working this way, even though a fix may take 7 or 8 commits, you can quickly search your log and roll the fixes for Bug #366 into release as a single unit.

Redmine, trac, fogbugz, bugzilla, tfs, all good.

link|flag
Fogbugz...Jeff Atwood represent'n... :) – leeand00 May 29 at 19:17
trac...hmm I wonder how ya do that in there...I've got Trac one of my projects, I'll have to look into how you do that...with...maybe another question... – leeand00 May 29 at 19:18
Okay here's that another question: stackoverflow.com/questions/927698/… – leeand00 May 29 at 19:22
vote up 4 vote down

Once you make a commit, there is intentionally no way to modify it. This way r123 always refers to the same thing. If you could add files to a commit afterwards, then a person who checked-out r123 before the change would have a different view than someone who checked-out r123 after the change, breaking a key goal of any version control system.

This really is no different than the question "what should I do if I commit code that has a syntax error in it and won't build?" The answer is to commit something else that has a fix in it. The two cases create the same problems and have the same solution.

link|flag
vote up 2 vote down

No, for this kind of power you would need a tool like Git.

link|flag
Perhaps only for local commits. Once the commit has gone public is it really a good idea to be altering it? – Danny Jul 3 at 23:02
vote up 1 vote down

To follow up on a previous answer.

I use Git SVN almost exclusively at this point for its ability to keep local revisions and then merge them into the SVN tree when i am fully done with the feature. When working with Git SVN, I commit my changes locally and when I am completely done, then sync to SVN.

link|flag
Good point, I use this myself and forgot to mention it. – OrbMan May 29 at 14:54
Yeah, that is actually a good feature of distributed version control. – Jim T May 29 at 18:28
vote up 0 vote down

A workaround: reverse-merge all the revisions in question, commit, apply again the changes from those revisions to your WC, commit all at once.

Disclaimer: I haven't tried it.

link|flag
Whilst that fixes the problem, your log now shows 2 additional commits, and all three commits will need to be rolled forward into your release branch (and documented) – Jim T May 29 at 18:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.