Re: Fwd: Loss by accident, clean up unversioned files
Andreas Stieger <[email protected]>
| Newsgroups | gmane.comp.version-control.subversion.user |
|---|---|
| Message-ID | <[email protected]> |
On 2024-06-14 12:30, Ayyanar Raja wrote: > On Saturday, July 10, 2021 at 5:22:36 PM UTC+5:30 Jose Gaspar wrote: >> >> Done, by accident, a clean up including unversioned files. >> TortoiseSVN indicates deleted unversioned files can be recovered from >> the recycle bin: >> >> https://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-dug-rename.html >> > > As per the below mail, I've unknowingly deleted the unversioned files. > How to recover them? Subversion, by design, does not version unversioned files. Requesting to delete them will do exactly that. If they should be permanently versioned, you should commit them. Read about branches, in particular feature branches, to create a permanent record of intermediate work inside the repository. The TSVN extension for the recycle bin functionality is custom to them. I looked into adding API support for this via the Windows API/ XDG where supported but this would go beyond the tool. > Why is this not yet fixed ? I believe that desktop backup, and point-in-time recovery for uncommitted work are out of scope for Subversion. The recommend method is to work on branches. Andreas