如何在命令行中更改现有变更列表的描述?

发布于 2024-10-31 21:56:59 字数 68 浏览 0 评论 0原文

命令“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

り繁华旳梦境 2024-11-07 21:56:59

使用以下命令:

p4 更改 -u CL_number

有关详细信息,请访问此页面

Use the following command:

p4 change -u CL_number

For details, please visit this page.

丢了幸福的猪 2024-11-07 21:56:59

这个命令行对我有用:

p4 --field Description="New CL description here" change -o *changelist_number* | p4 change -i

This command line worked for me:

p4 --field Description="New CL description here" change -o *changelist_number* | p4 change -i
趴在窗边数星星i 2024-11-07 21:56:59

总是有 -i 命令:

从标准输入读取变更列表描述。输入的格式必须与 p4 更改表单使用的格式相同。

正如 Bryan 在他的评论中指出的那样,最好的方法可能是运行 change -o,将输出重定向到文件,使用其他 shell 命令处理该文件,然后将该文件发送回服务器更改-i

来源

但是您可以随时更改描述您提交:

p4提交-d“描述”

这只适用于默认更改列表。

来源

There's always the -i command:

Read a changelist description from standard input. Input must be in the same format used by the p4 change form.

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 with change -i.

Source

But you can always change the description when you submit:

p4 submit -d "description"

This only works on the default change list.

Source

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文