如何使用tf.exe签入单个文件而不出现弹出对话框?

时间:2018-08-17 20:02:21

标签: visual-studio batch-file tfs tf-cli

我正在尝试使用tf.exe从命令行对单个文件进行检入:

tf.exe签入myfile.cs

但是无论何时,我都会弹出一个对话框,要求我选择源文件。

如何在不显示对话框的情况下仅签入单个文件? Popup dialog that hapopens when I try to do a checkin from command line

2 个答案:

答案 0 :(得分:0)

最有可能是您看到的弹出窗口,因为您没有添加评论。管理员可能还会要求其他策略,但是通常需要注释。如tf command-line documentation中所述,您可以按如下所示指定注释:

tf.exe checkin /comment:"My comment" myfile.cs

答案 1 :(得分:0)

您只需要添加/noprompt参数。

Check in a change to a single item without using the Check In dialog box

 c:\code\SiteApp\Main>tf checkin program.cs /noprompt