Ejemplo n.º 1
0
 /// <summary>Report progress to stderr.</summary>
 public static ICommandArgument Verbose()
 {
     return(CommandFlag.Verbose());
 }
Ejemplo n.º 2
0
 public static ICommandArgument Quiet()
 {
     return(CommandFlag.Quiet());
 }
Ejemplo n.º 3
0
 public static ICommandArgument NoMoreOptions()
 {
     return(CommandFlag.NoMoreOptions());
 }
Ejemplo n.º 4
0
 public static ICommandArgument SignOff()
 {
     return(CommandFlag.SignOff());
 }
Ejemplo n.º 5
0
Archivo: rm.cs Proyecto: oqewok/gitter
 public static ICommandArgument DryRun()
 {
     return(CommandFlag.DryRun());
 }
Ejemplo n.º 6
0
Archivo: add.cs Proyecto: 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());
 }