On Mon, Sep 4, 2023 at 8:36 AM Magnus Lyrberg <magnus.lyrb...@elk-studios.com> wrote: > There is some concern that having 180000 empty commits might impact > the performance of the repository. I assume each commit still has an entry > in the database etc, even if it does not use a lot of disk.
Are you doing this for performance? I doubt you will see any improvements even if you did not care about the revision numbers and just created a new repo with a handful of revisions. SVN performance is not impacted by the number of revisions with the only exception being the tools you use to backup and restore the repository. If anything, having a single revision with a lot of changes in it hurts performance of some commands. For example svn log -v is really harmed by having a single revision with a lot of changed paths. Mark