d4b86d60a1
(The client lib will only use it as a fallback.) Removed the useless username. It seems like there are other ways that the user/pass can be gotten from the user and/or stored. Also cleaned up some method access specs.
18 lines
460 B
C#
18 lines
460 B
C#
using System.ComponentModel;
|
|
using CommandLine.OptParse;
|
|
using Sep.Git.Tfs.Util;
|
|
|
|
namespace Sep.Git.Tfs.Commands
|
|
{
|
|
[StructureMapSingleton]
|
|
public class RemoteOptions
|
|
{
|
|
[OptDef(OptValType.ValueReq)]
|
|
[LongOptionName("ignore-regex")]
|
|
[UseNameAsLongOption(false)]
|
|
[Description("If specified, git-tfs will not sync any paths that match this regular expression.")]
|
|
public string IgnoreRegex { get; set; }
|
|
|
|
}
|
|
}
|