Namespaces

Types in GitSharp.Commands

Type CheckoutIndexCommand

Namespace GitSharp.Commands

Parent AbstractCommand

Properties

Public properties

string ActualDirectory get;

bool All get; set;

Not implemented checks out all files in the index. Cannot be used together with explicit filenames.

List<string> Arguments get; set;

bool Force get; set;

Not implemented forces overwrite of existing files

string GitDirectory get; set;

bool Index get; set;

Not implemented update stat information for the checked out entries in the index file.

bool NoCreate get; set;

Not implemented Don't checkout new files, only refresh files already checked out.

StreamWriter OutputStream get; set;

string Prefix get; set;

Not implemented When creating files, prepend (usually a directory including a trailing /)

bool Quiet get; set;

Not implemented be quiet if files exist or are not in the index

Repository Repository get; set;

string Stage get; set;

Not implemented Instead of checking out unmerged entries, copy out the files from named stage. must be between 1 and 3. Note: --stage=all automatically implies --temp.

bool Stdin get; set;

Not implemented Instead of taking list of paths from the command line, read list of paths from the standard input. Paths are separated by LF (i.e. one path per line) by default.

bool Temp get; set;

Not implemented Instead of copying the files to the working directory write the content to temporary files. The temporary name associations will be written to stdout.

bool Z get; set;

Not implemented Only meaningful with `--stdin`; paths are separated with NUL character instead of LF.