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.
检查此工作区当前是否具有某个文件的最新版本的命令行语法是什么?
命令:
p4 sync -n
将预览同步操作。这将告诉您如果您使用实际命令将更新哪些文件。
p4 have [file]
将告诉您当前拥有的文件的版本。这加上:
p4 fstat -T "headRev" [file]
它告诉您头部修订号,将告诉您是否拥有最新版本。
值得注意的是,所有 Perforce 命令都有一个预览选项,告诉您它们会做什么。这使您可以验证您是否获得了正确的命令,而不必担心损坏您的工作区或仓库。