Consider a situation: I've made multiple changes to one versioned file and want to commit the changes. Now I realise that they'd better be committed as two separate commits - so that some changes belong to one changeset and others - to another. How can I do that most efficiently?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Copy the file, use svn diff to undo the changes for the second changeset, commit the modified file with the first changeset, copy the file back, commit second changeset.

link|improve this answer
feedback

It depends on whether TortoiseSvn supports Hunk selection. TortoiseHg (for mercurial) does, so I assume Tortoisesvn does so too.

link|improve this answer
No, unfortunately it does not support this – Peter Parker Jan 14 '10 at 1:18
Ok thanks. I think it could be implemented the way Aaron explained though. – Johannes Rudolph Jan 14 '10 at 6:01
feedback

Your Answer

 
or
required, but never shown

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