列出沙箱中所有待处理的更改列表

List all pending changelists in a sandbox

我有一个 perforce 沙箱,我在沙箱中创建了一个新的变更集,它仍在等待中,即我还没有提交它。如何获取变更集编号。 p4 changelists 为我提供了所有沙箱的变更列表,我只需要我的,而且只有待定的。

p4 changes -c CLIENT -s pending

其中 CLIENT 是您的客户端规范的名称 ("sandbox")。

来自"p4 help changes":

changes -- Display list of pending and submitted changelists
changelists -- synonym for 'changes'

p4 changes [-i -t -l -L -f] [-c client] [ -e changelist# ]
        [-m max] [-s status] [-u user] [file[revRange] ...]

    ...

    The -c client flag displays only submitted by the specified client.

    ...

    The -s status flag limits the output to changelists with the specified
    status. Specify '-s pending', '-s shelved', or '-s submitted'.