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 命令行工具从默认挂起更改列表中列出所有未更改的文件?出于某种原因,我想检测此类文件并进行进一步更改。非常感谢。
最好的祝福
使用p4 revert.
p4 revert
说
p4 revert -a
将还原所有未更改的文件。
您不想还原但想列出未更改的文件,因此请提供该-n选项。说:
-n
p4 revert -a -n
将列出未更改的文件而不执行任何操作。