Ejemplo n.º 1
0
 public Fixer(MetaInfo metaInfo,
              Options options,
              ICommandRunner commandRunner,
              string gitConfigCommandArguments,
              IMessageDisplayer messageDisplayer,
              ILogger logger)
     : base(options, commandRunner, gitConfigCommandArguments, messageDisplayer, logger)
 {
     _metaInfo = metaInfo;
 }
Ejemplo n.º 2
0
 public Grabber(string svnUrl,
                Options options,
                ICommandRunner commandRunner,
                string gitConfigCommandArguments,
                IMessageDisplayer messageDisplayer,
                ILogger logger)
     : base(options, commandRunner, gitConfigCommandArguments, messageDisplayer, logger)
 {
     _svnUrl   = svnUrl;
     _metaInfo = new MetaInfo()
     {
         RemoteBranches = new List <string>(),
         LocalBranches  = new List <string>(),
         Tags           = new List <string>()
     };
 }