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 2010。
要做的一件事是查看目录(可能是主干的根目录)的历史记录。列表中最顶部的项目应该是该级别的最新变更集。
从命令行:
tf history "$/MyItemSpec" /collection:http://mytfs.domain.com:8080/tfs/MyCollection /version:T /recursive /noprompt /sort:descending
您可以将其通过管道传输到文件或您拥有的文件中,第一项应该是您想要的。