SVN Revert Trunk, remove a revision as if it never existed?

后端 未结 5 1925
悲哀的现实
悲哀的现实 2021-01-04 05:02

Is it possible in the svn server to remove a revision as if it never existed?

So we have the following revisions:

1004 // Commit of some bogus code t         


        
5条回答
  •  天涯浪人
    2021-01-04 05:51

    VCS systems are designed specifically to make this as complicated as possible. You usually do not want to do this.

    That being said, from the official documentation:

    There are special cases where you might want to destroy all evidence of a file or commit. (Perhaps somebody accidentally committed a confidential document.) This isn't so easy, because Subversion is deliberately designed to never lose information. Revisions are immutable trees which build upon one another. Removing a revision from history would cause a domino effect, creating chaos in all subsequent revisions and possibly invalidating all working copies.

    The project has plans, however, to someday implement an svnadmin obliterate command which would accomplish the task of permanently deleting information. (See issue 516.)

    In the meantime, your only recourse is to svnadmin dump your repository, then pipe the dumpfile through svndumpfilter (excluding the bad path) into an svnadmin load command. See chapter 5 of the Subversion book for details about this.

    http://subversion.apache.org/faq.html#removal

提交回复
热议问题