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.
我希望查找用户是否修改了任何 perforce 分支中的文件。有没有一个简单的命令可以找到它?
输入:用户名和文件名 输出:更改列表或无更改列表
p4 changes -u {user} //.../{filename}
您可以结合使用p4 filelog和 grep 来实现此目的。
p4 filelog {filename} | grep {username}