1
我需要在Perforce中使用Java的現有更改列表的描述中追加一些文本。 什麼是最有效的方法呢?Perforce:將描述添加到現有更改列表
我能想到的
1. CL_content = p4 change -o <changelist>
2. Then append the required text to the description
3. p4 change -i CL_content
但是,它不適合非常大的修改列表。
還有其他方法嗎?
爲什麼不適合非常大的更改表? – Dennis
因爲它需要大量的內存。 – sachinpkale
我認爲你的建議解決方案是最好的。我過去曾用大型更改表做過這件事,並沒有注意到任何性能問題。 –