如何在不弹出对话框的情况下使用 tf.exe 签入单个文件?

how can I use tf.exe to checkin single file without getting popup dialog box?

我正在尝试使用 tf.exe:

从命令行签入单个文件

tf.exe签到myfile.cs

但每当我这样做时,都会弹出一个对话框,要求我 select 源文件。

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

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

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

您只需添加/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