gpt4 book ai didi

TFS-SDK:合并不起作用

转载 作者:行者123 更新时间:2023-12-04 23:07:10 24 4
gpt4 key购买 nike

作为更大实现的一部分,我正在尝试使用 TFS-SDK 实现我的源代码管理分支/文件夹的合并操作。我正在针对 TFS2010 安装工作。我所拥有的是:

using System;
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.VersionControl.Client;
using Microsoft.TeamFoundation.VersionControl.Common;

namespace MergeBranchesFolders
{
class Program
{
static void Main()
{
TfsTeamProjectCollection teamProjectCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("http://TFSSERVER/Collection"));
var versionControl = teamProjectCollection.GetService<VersionControlServer>();

const string fromPath = "$/TeamProject/SourceDir";
const string toPath = "$/TeamProject/TargetDir";

Workspace myWorkspace = versionControl.GetWorkspace("WorkspaceName", "WorkspaceOwner");
GetStatus getStatus = myWorkspace.Merge(fromPath, toPath, VersionSpec.Latest, VersionSpec.Latest,
LockLevel.None, RecursionType.Full, MergeOptionsEx.None);
}
}
}

我确信我可以正确访问 myWorkspace ,然而 getStatus看起来像这样: enter image description here这几乎说明什么都没有发生。然而,如果我尝试在 IDE 中合并,我会得到几个合并候选者。如果我执行以下操作,也可以看到相同的合并候选者:
var mergeCandidates = versionControl.GetMergeCandidates(fromPath, toPath,RecursionType.Full).ToList();

我都失败了 fromPath/ toPath是分支和文件夹 - 即使是单个文件。我能找到的唯一资源是 this一个,这没有帮助......

最佳答案

Shai Raiten的blog-post来救援!

这失败了:

GetStatus getStatus = myWorkspace.Merge(fromPath, toPath, VersionSpec.Latest, VersionSpec.Latest,
LockLevel.None, RecursionType.Full, MergeOptionsEx.None);

这成功了:
GetStatus getStatus = myWorkspace.Merge(fromPath, toPath, null, null, LockLevel.None, RecursionType.Full, MergeOptionsEx.None);

关于TFS-SDK:合并不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9396738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com