Get all files from VSS for a given date?

前端 未结 4 511
遥遥无期
遥遥无期 2020-12-01 07:01

Is there a way I can ask Visual source safe to get all the files from a given date for a project? We don\'t use labels, so I can\'t roll back to a specific label and am hop

相关标签:
4条回答
  • 2020-12-01 07:15

    Using the command line, use the get command with the -Vd parameter

    ss get $/Project -R -GTU -Vd4/30/2009;3:00a

    I'm not sure, but I don't think there is a way to do this with the ui.

    0 讨论(0)
  • 2020-12-01 07:33

    As far as I know you have to use the get command at a command prompt, not the gui. Something like this should do:

    ss Get "$/AFolder" -R -Vd15-03-2009;2:00a
    

    The -R option makes the get recursive and the -vd option gets the version at the specified date.

    0 讨论(0)
  • 2020-12-01 07:35

    Using SourceSafe: Get by Date

    http://web.archive.org/web/20120615102028/http://brennan.offwhite.net/mtblog/archives/000282.htmll

    0 讨论(0)
  • 2020-12-01 07:36

    You can right-click the project, choose Show History and get the version of a given date from the history explorer.

    0 讨论(0)
提交回复
热议问题