Retract accidental checkin

2019-01-03 06:12发布

You're using subversion and you accidentally checkin some code before it's ready. For example, I often: a) checkin some code, then b) edit a little, then c) hit up, enter to repeat the previous command which unfortunately was a checkin.

Is it possible to retract such an accidental checkin from the server with subversion?

标签: svn
11条回答
ら.Afraid
2楼-- · 2019-01-03 06:14

See the SVNBook, specifically the 'Undoing Changes' section, and reverse merging.

Another common use for svn merge is to roll back a change that has already been committed. Suppose you're working away happily on a working copy of /calc/trunk, and you discover that the change made way back in revision 303, which changed integer.c, is completely wrong. It never should have been committed. You can use svn merge to “undo” the change in your working copy, and then commit the local modification to the repository. All you need to do is to specify a reverse difference:

$ svn merge -r 303:302 http://svn.example.com/repos/calc/trunk

To clarify, your initial change will still be in the repository. But you've now retracted it in a later revision. i.e. the repository has captured all your changes (which is really what you want! Unless you've checked in a plaintext password or similar!)

查看更多
3楼-- · 2019-01-03 06:15

It is sometimes necessary to edit the repo on the server, for example when you've accidentally committed a password that's hard to change. Here's a method I believe to be completely safe (the answer from @David Fraser caused repo corruption for me). NB this method will only remove revisions from the end of the repo so is most useful if you notice your mistake immediately.

  1. Inform all your users that the repo is going offline and that they'll need to create a new checkout from the server.
  2. Take the repo offline, take a backup copy and move the main repo to a safe location with a name like reponame_old.
  3. Dump your repo to a single-file representation, leaving the unwanted revisions off the end:
    • svnadmin dump -r 0:N > reponame.dump
    • e.g. svnadmin dump -r 0:6610 > reponame.dump will remove revs 6611 onwards
    • Note that the repodump file could be twice the size of your repo folder.
  4. Create a new repo to load these revisions into:
    • svnadmin create reponame
  5. Load the trimmed set of revisions into the new repo
    • svnadmin load reponame < reponame.dump
  6. Apply any necessary customisations to your new repo (e.g. hooks) and return it to service.
    • We're using VisualSVN server so had to restore the conf\VisualSVN-WinAuthz.ini file.
    • We also saw some odd behaviour until we rebooted the server, so VisualSVN may cache the repo state; YMMV with other hosting setups.
  7. Don't forget to either delete the backup with the secret data, or put it somewhere safe.
  8. Tell all the users to do a new svn checkout from the repo server.
查看更多
乱世女痞
4楼-- · 2019-01-03 06:24

I would doubt it. One of the main ideas of a source control is that a repository does not loose any history. You can't delete history. The best you can do is get an older version and overwrite the current one with that. But the history logs will still show your mistake.

(Offtopic: What kind of IDE are you using that does something like that?)

查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-01-03 06:26

Yes, this is really what Subversion is for.

What you need to do is just replace your copy with previous revision in SVN repository.

There are several options:

  1. Replace with Revision.
  2. Replace with URL
  3. Latest from repository (but in your case, you already have the latest)
  4. Replace with Branch

But I strongly recommend you to do the following prior to replace your local copy:

  1. Do a 'Compare with Repository/ Revision / URL'.
查看更多
走好不送
6楼-- · 2019-01-03 06:27

WARNING: The accepted answer (by David Fraser) should work with an SVN 1.5 repository, but with SVN 1.6 you must also delete db/rep-cache.db before the next commit or you'll corrupt your repository and may not realize it until the next time you try a complete checkout. I've seen subsequent complete checkouts fail with a "Malformed representation header" error.

What is rep-cache.db, you may ask? The documentation on the FSFS layout says that you will lose "rep-sharing capabilities" if you delete this file; however, it will be recreated on your next commit. Representation sharing was added in 1.6.

查看更多
三岁会撩人
7楼-- · 2019-01-03 06:32

NB: THIS PROBABLY WON'T WORK ON CURRENT VERSIONS OF SUBVERSION AND IS A BAD IDEA - but I've left it here for information

NB: Normally when you have checked in by mistake, you should just revert the commit - see the other answers to this question. However, if you want to know how to actually undo the effects of the commit and change the repository to be how it was before, there's some explanation below:

This isn't what you normally want, but if you really want to remove the actual committed version from the repository, then you can do a nasty rollback on the repository as follows (this assumes that $REV is set to the latest revision, which you are removing):

  • Backup your repository first as these changes may break it (and read the assumptions below)
  • Revert your local copy to the previous revision so it doesn't get confused (svn revert -r $((REV-1)))
  • In the repository, remove db/revs/$REV and db/revprops/$REV
  • In the repository, remove db/current and (for subversion 1.6 or greater) db/rep-cache.db, and run svnadmin recover .
  • (Possibly) adjust the permissions on db/rep-cache.db to prevent attempt to write a readonly database errors

This all assumes:

  • You're using a fsfs-based repository
  • Subversion release greater than 1.5.0 (otherwise you have to manually edit db/current and change the revision number rather than running svnadmin recover .)
  • No other subsequent revisions have been committed
  • You have write access to the filesystem of the repository
  • You aren't scared of somebody else trying to access it while you do the above

I've done it when a huge file was committed to a repository that I didn't want to stay in the history (and mirrors etc) forever; it's not in any way ideal or normal practice...

查看更多
登录 后发表回答