Files
git-tfs/GitTfs/Commands/RemoteOptions.cs
T
Matt Burke d4b86d60a1 Use UICredentialsProvider for all TFS connections.
(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.
2010-07-14 14:55:24 -04:00

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; }
}
}