0

我想使用 TFS 编程 API 实现以下命令:

tf history /stopafter:1 /version:W /recursive /format:detailed /noprompt .

我有一些代码,但它试图检查本地工作区信息,但没有。所以,我又回到了无。

它是如何完成的?

4

1 回答 1

0

你会想要使用VersionControlServer.QueryHistory

versionControlServer.QueryHistory(
    serverPath,
    VersionSpec.Latest,
    0,
    RecursionType.Full,                  /* recursive */
    null,
    null,
    new WorkspaceVersionSpec(workspace), /* /version:W */
    1,                                   /* /stopafter:1 */
    true,                                /* /format:detailed */
    true,
    true,
    false);
于 2013-10-02T04:04:02.870 回答