Esempio n. 1
0
 /// <summary>Report progress to stderr.</summary>
 public static ICommandArgument Verbose()
 {
     return(CommandFlag.Verbose());
 }
Esempio n. 2
0
 public static ICommandArgument Quiet()
 {
     return(CommandFlag.Quiet());
 }
Esempio n. 3
0
 public static ICommandArgument NoMoreOptions()
 {
     return(CommandFlag.NoMoreOptions());
 }
Esempio n. 4
0
 public static ICommandArgument SignOff()
 {
     return(CommandFlag.SignOff());
 }
Esempio n. 5
0
File: rm.cs Progetto: oqewok/gitter
 public static ICommandArgument DryRun()
 {
     return(CommandFlag.DryRun());
 }
Esempio n. 6
0
File: add.cs Progetto: oqewok/gitter
 /// <summary>
 ///	Add modified contents in the working tree interactively to the index. Optional path arguments
 ///	may be supplied to limit operation to a subset of the working tree. See “Interactive mode” for details.
 /// </summary>
 public static ICommandArgument Interactive()
 {
     return(CommandFlag.Interactive());
 }