I'm trying to clean up my repository. Since I'm committing my changes very often, to be sure, I have many changes that were committed seperately but belong together. Is it possible to join multiple committed revisions (in the same repository) in the revision log?
Asked
Active
Viewed 105 times
1 Answers
1
I believe the straight answer is no, but this is a workaround:
- Manually put together the commit comments from your desired range
- Make a copy of the updated repository
- Revert to the latest revision before your desired range
- Merge that revision to HEAD (Read the "Undoing changes" section in this page for more info)
- Commit your copy from step 2 and insert the comments

ystan-
- 1,474
- 1
- 19
- 43
-
I was afraid so. I'm going to try that if there's really no other way. thx – user2154171 Mar 20 '14 at 09:37