Command line PlasticSCM:是否将所有更改提交到部分工作区,包括新文件和已删除文件?

Command line PlasticSCM:是否将所有更改提交到部分工作区,包括新文件和已删除文件?,command-line,plasticscm,Command Line,Plasticscm,我正在寻找一个自动化命令行来提交对部分工作空间所做的所有更改,包括文件的添加和删除 cm签入“路径”--全部 适用于非部分工作空间,包括新文件和已删除文件 及 cm部分签入“路径”-applychanged 适用于部分工作空间,但不适用于新文件或已删除文件 由于“cm partial”没有--all关键字,我希望有一个工作环境,plastic将在部分工作空间中包含所有更改、添加或删除的文件 有什么想法吗 “CM部分签入”的帮助打印输出 将更改提交到存储库 用法: cm partial check

我正在寻找一个自动化命令行来提交对部分工作空间所做的所有更改,包括文件的添加和删除

cm签入“路径”--全部

适用于非部分工作空间,包括新文件和已删除文件

cm部分签入“路径”-applychanged

适用于部分工作空间,但不适用于新文件或已删除文件

由于“cm partial”没有--all关键字,我希望有一个工作环境,plastic将在部分工作空间中包含所有更改、添加或删除的文件

有什么想法吗

“CM部分签入”的帮助打印输出

将更改提交到存储库

用法:

cm partial checkin | ci [<item_path>+] [-c=str_comment]
[--applychanged] [--keeplock] [--silent] [--dropconflicts]
备注:

- If <item_path> is not specified, the checkin will involve all the
pending changes in the workspace.
- The checkin operation is always applied recursively from the given path.
- To checkin an item:
- The item must be under source code control.
- The item must be checked out.
- If the item is changed but not checked out the --applychanged flag has
to be specified.

Revision content should be different from previous revision in order to be
checked in.

局部工作区中没有用于本地添加和删除文件的特定命令,但您可以在局部工作区中使用下一种解决方法:

1)
cm findprivate | cm部分添加-

2)
cm状态--localdeleted--short | cm rm-

3)
cm部分签入

- If <item_path> is not specified, the checkin will involve all the
pending changes in the workspace.
- The checkin operation is always applied recursively from the given path.
- To checkin an item:
- The item must be under source code control.
- The item must be checked out.
- If the item is changed but not checked out the --applychanged flag has
to be specified.

Revision content should be different from previous revision in order to be
checked in.
cm partial checkin file1.txt file2.txt
(Applies the checkin to file1.txt and file2.txt checked-out files.)

cm partial checkin .
(Applies checkin to current directory.)

cm partial ci file1.txt -c="my comment"
(Applies the checkin to file1.txt and includes a comment.)

cm partial checkin --applychanged
(Applies the checkin to all pending changes in the workspace.)