Reputation: 3157
I have created a new repository and added some things inside, now i have a huge list of revisions because of the addition. I wish to collapse all of the revisions into a single one, but I couldn't find a solution to this.
All I could find is merging branch with trunk.
Anyone know how to do this?
Upvotes: 0
Views: 388
Reputation: 97270
Short answer
You can't do it - history in Subversion is immutable
Longer answer
You can't do it easy and using only svn-client and single repo
Long answer
You have to create and use new repository, in which you'll store Revision 1 and (after handwork) state of the latest revision
Draft of process
Note: Steps 1 and 4 can be
Upvotes: 3