TF.exe 创建文件夹而不是分支
TF.exe creates folder instead of branch
我在 C# 代码中使用 tf.exe 在 TFS 中创建新分支。这就是我所做的:
public static bool TFBranch(string projectPath, string originName, string branchName)
{
string branchedProject = projectPath + "\" + branchName;
string projectToBranch = projectPath + "\" + originName;
string path = Environment.ExpandEnvironmentVariables(@"branch " + projectToBranch + " " + branchedProject);
path = path.Replace("\", "/");
return ExecuteProcess(path);
}
private static bool ExecuteProcess(string path)
{
MyProcess proc = new MyProcess();
var currentDirectory = WorkspaceHandler.GetLocalWorkspace();
var command = @"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\tf.exe";
Directory.SetCurrentDirectory(currentDirectory);
proc.FileName = command;
proc.Arguments = path;
try
{
proc.Execute();
}
catch (Exception e)
{
_Logger.Error("Could not execute TF.exe. Exception: " + e.ToString());
return false;
}
return true;
}
除此之外,大多数情况下一切正常。我从一个已经包含分支的目录分支,所以新分支也包含一个分支。但有时 tf.exe 创建的是文件夹,而不是分支。这是 tf.exe 的错误,还是我做错了什么?
示例:
这是分支命令的样子:
-- 编辑--
以下是我手动操作的方法:
- 我用菜单分支Templates/BranchSource/Folder/Main:
- 在对话框中我定义了 "Target Branch Name":
- 结果是我期望得到的:
这与我使用代码执行此操作时得到的结果相同。唯一的区别是代码有时会创建一个文件夹。
tf.exe
无法做到这一点,但您可以在创建分支后使用电动工具中的 tfpt.exe 来做到这一点。 (或来自 Visual Studio 中的源代码管理资源管理器):
tfpt branches /convertToBranch
另请参阅:
- TFS 2010 - command line for convert to branch
我在 C# 代码中使用 tf.exe 在 TFS 中创建新分支。这就是我所做的:
public static bool TFBranch(string projectPath, string originName, string branchName)
{
string branchedProject = projectPath + "\" + branchName;
string projectToBranch = projectPath + "\" + originName;
string path = Environment.ExpandEnvironmentVariables(@"branch " + projectToBranch + " " + branchedProject);
path = path.Replace("\", "/");
return ExecuteProcess(path);
}
private static bool ExecuteProcess(string path)
{
MyProcess proc = new MyProcess();
var currentDirectory = WorkspaceHandler.GetLocalWorkspace();
var command = @"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\tf.exe";
Directory.SetCurrentDirectory(currentDirectory);
proc.FileName = command;
proc.Arguments = path;
try
{
proc.Execute();
}
catch (Exception e)
{
_Logger.Error("Could not execute TF.exe. Exception: " + e.ToString());
return false;
}
return true;
}
除此之外,大多数情况下一切正常。我从一个已经包含分支的目录分支,所以新分支也包含一个分支。但有时 tf.exe 创建的是文件夹,而不是分支。这是 tf.exe 的错误,还是我做错了什么?
示例:
这是分支命令的样子:
-- 编辑--
以下是我手动操作的方法:
- 我用菜单分支Templates/BranchSource/Folder/Main:
- 在对话框中我定义了 "Target Branch Name":
- 结果是我期望得到的:
这与我使用代码执行此操作时得到的结果相同。唯一的区别是代码有时会创建一个文件夹。
tf.exe
无法做到这一点,但您可以在创建分支后使用电动工具中的 tfpt.exe 来做到这一点。 (或来自 Visual Studio 中的源代码管理资源管理器):
tfpt branches /convertToBranch
另请参阅:
- TFS 2010 - command line for convert to branch