我有一个绝对沙箱,我已经在沙箱中创建了一个新的变更集,它还在等待中,也就是说我还没有提交它。我怎样才能得到更改集的编号。p4 changelists给了我所有沙箱的变更者,我只需要我的沙箱,而那只是挂起的沙箱。
发布于 2016-04-06 22:50:46
p4 changes -c CLIENT -s pending其中客户端是客户端规范("sandbox")的名称。
来自"p4帮助更改“:
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'.https://stackoverflow.com/questions/36462669
复制相似问题