SubmitFilesCmdFlags Enumeration
|
Flags for the submit command.
Namespace:
Perforce.P4
Assembly:
p4api.net (in p4api.net.dll) Version: 2024.2.269.3570
Syntax [FlagsAttribute]
public enum SubmitFilesCmdFlags
<FlagsAttribute>
Public Enumeration SubmitFilesCmdFlags
[FlagsAttribute]
public enum class SubmitFilesCmdFlags
[<FlagsAttribute>]
type SubmitFilesCmdFlags
Members
| Member name | Value | Description |
---|
| None | 0 |
No flags.
|
| ReopenFiles | 1 |
The -r flag reopens submitted files in the default changelist after
submission.
|
| IncludeJobs | 2 |
The -s flag extends the list of jobs to include the fix status
for each job, which becomes the job's status when the changelist
is committed. See 'p4 help change' for details.
submission.
|
| SubmitShelved | 4 |
The -e flag submits a shelved changelist without transferring files
or modifying the workspace. The shelved change must be owned by
the person submitting the change, but the client may be different.
However, files shelved to a stream target may only be submitted by
a stream client that is mapped to the target stream. In addition,
files shelved to a non-stream target cannot be submitted by a
stream client. Submitting shelved changes by a task stream
client is not supported. To submit a shelved change, all
files in the shelved change must be up to date and resolved. No
files may be open in any workspace at the same change number.
Client submit options (ie revertUnchanged, etc) will be ignored.
If the submit is successful, the shelved change and files
are cleaned up, and are no longer available to be unshelved or
submitted.
|
| DisableParallel | 8 |
Auto parallel submit is turned off by
unsetting the net.parallel.threads configurable. A user may override
the configured auto parallel submit options on the command line, or may
disable it via 'p4 submit --parallel=0'.
|
See Also