Is there a way using Subversion to get snapshot of the files for a particular point in time?
For example, I want to recreate a build based on how the repository looked at an exact point in time from the past.
A snapshot is whatever is there at this point in time, with the latest features and the latest bugs. Many open source projects provide daily snapshots. You'll find CVS snapshots, svn (Subversion) snapshots, Git snapshots, Mercurial (hg) snapshots, Bazaar (bzr) snapshots, etc.
Subversion is used for maintaining current and historical versions of projects. Subversion is an open source centralized version control system. It's licensed under Apache. It's also referred to as a software version and revisioning control system.
Subversion (or SVN for short) is a version control system used to manage the files that make up a project as they are changed and modified throughout the life of the project. Subversion is actively managed and maintained by the Apache Software Foundation.
Use svn checkout URL -r TIME
, e.g.:
svn checkout http://server/repos/project/trunk -r {"2010-04-01 09:37:00"}
See http://svnbook.red-bean.com/nightly/en/svn.tour.revs.specifiers.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With