如何在命令行中更改现有变更列表的描述?
命令“p4change”会提示编辑器并需要一个表单。但我想在命令行中执行此操作。
我怎样才能实现这个目标?
The command "p4 change" prompts a editor and needs a form. But I want to do this in command line.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用以下命令:
有关详细信息,请访问此页面。
Use the following command:
For details, please visit this page.
这个命令行对我有用:
This command line worked for me:
总是有
-i
命令:正如 Bryan 在他的评论中指出的那样,最好的方法可能是运行
change -o
,将输出重定向到文件,使用其他 shell 命令处理该文件,然后将该文件发送回服务器更改-i
。来源
但是您可以随时更改描述您提交:
这只适用于默认更改列表。
来源
There's always the
-i
command:As Bryan points out in his comment the best approach is probably to run
change -o
, redirect the output to a file, process the file with other shell commands, and then send that file back to the server withchange -i
.Source
But you can always change the description when you submit:
This only works on the default change list.
Source