문제

I have a couple of questions regarding Visual Sourcesafe. I have a .NET c# project I want to get a copy of and compile. I have the date when it was uploaded and that is the version I need to recompile. I had never used sourcesafe before so my two rookie questions are these:

  1. Can I extract a full project from that specific day?
  2. Will that mess up the current version of that same project?

Thanks!

도움이 되었습니까?

해결책

To get all the files in a project on a specific date you have to use the command line, like this:

ss Get "$/YourProjectName" -R -Vd19-09-2013;3:20p

Note: -R is recursive get and -Vd gets a version at a specific date. Also take note of the SourceSafe date format.

Read Get (Command Line) for more information.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top