Undo / Restore Files in Visual Studio

Why doesn't VS support undo / redo files?

+1


source to share


2 answers


It reproduces the functionality of a version control system (such as Subversion or CVS), but lacks some of the benefits of those systems (such as tags and branches). It probably doesn't exist (or in many IDEs). Many people think that they are discouraged from using version control for small projects, but it is worth the initial setup and can be shared across many projects.



+2


source


If these functions do what I think they are, it is basically a function of your source control system and it is not something that visual studio needs to handle. On the other hand, VS maintains a complete history of the changes you have made since you opened Visual studio, and you can undo changes for an entire day or even a week if you leave VS open long enough.



+1


source







All Articles