Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将文件签入到 TFS,但不是所有待处理的更改。
PendingChange[] changes = workspace.GetPendingChanges(); workspace.CheckIn(changes, "");
通过这种方式,我检查了我所有的文件。但我只想签入具有特定文件名的选定文件。我怎样才能做到这一点?
尝试changes根据PendingChange.FileName或其他属性过滤列表。然后Workspace.CheckIn使用过滤的更改列表调用。
changes
PendingChange.FileName
Workspace.CheckIn