P4Revert Class

Summary

Discard changes made to open files.
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks.Perforce
Base Types
graph BT Type-->Base0["P4Base"] click Base0 "/api/NAnt.Contrib.Tasks.Perforce/P4Base" Base0-->Base1["ExternalProgramBase"] Type["P4Revert"] class Type type-node

Syntax

[TaskName("p4revert")]
public class P4Revert : P4Base

Examples

Revert all txt files in a given changelist.

<p4revert changelist="Test" view="//...*.txt" />

Revert all unchanged files opened in the given changelist.

<p4revert changelist="Test" revertunchanged="true" />

Revert all unchanged files opened in any changelist.

<p4revert revertunchanged="true" />

Attributes

Type Description
TaskName

Properties

Name Value Summary
Changelist string
Changelist to perform the revert action on. optional.
Client string
The p4 client spec to use. The default is the current client.
Inherited from P4Base
CommandSpecificArguments string
This is an override used by the base class to get command specific args.
ExeName string
Override the ExeName paramater for p4.exe
Inherited from P4Base
Port string
The p4 server and port to connect to. The default is "perforce:1666".
Inherited from P4Base
ProgramArguments string
Gets the command line arguments for the external program.
Inherited from P4Base
RevertUnchanged bool
Revert all unchanged or missing files from the changelist. default is false. optional.
Script bool
Prepends a descriptive field (for example, text:, info:, error:, exit:) to each line of output produced by a Perforce command. This is most often used when scripting. The default is false.
Inherited from P4Base
User string
The p4 username. The default is the current user.
Inherited from P4Base
View string
The client, branch or label view to operate upon. The default is "//...".
Inherited from P4Base

Methods

Name Value Summary
ExecuteTask() void
Execute the perforce command assembled by subclasses.
Inherited from P4Base
getSpecificCommandArguments() string
Builds the command string for this particular command.