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.
假设我已经在默认更改列表中打开了一个文件,我想将它移动到另一个更改列表。移动操作允许我指定一个新的更改列表,但我的移动被忽略了,因为文件系统中的路径没有改变。
虽然在 P4V 中这称为“移动到另一个变更列表”,但 p4java 名称与 p4 命令行术语相同,这称为“重新打开”文件。尝试:IClient.reopenFiles()
IClient.reopenFiles()
client.reopenFiles(Arrays.asList(new IFileSpec[] { fileSpec }), newChanglist, null);