Inheritance: GitTfsCommand
Ejemplo n.º 1
1
 public InitBranch(TextWriter stdout, Globals globals, Help helper, AuthorsFile authors)
 {
     _stdout = stdout;
     _globals = globals;
     _helper = helper;
     _authors = authors;
 }
Ejemplo n.º 2
0
 public Verify(Globals globals, TreeVerifier verifier, TextWriter stdout, Help helper)
 {
     _globals = globals;
     _verifier = verifier;
     _stdout = stdout;
     _helper = helper;
 }
Ejemplo n.º 3
0
 public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch)
 {
     this.globals = globals;
     this.stdout = stdout;
     this.helper = helper;
     this.cleanup = cleanup;
     this.initBranch = initBranch;
 }
Ejemplo n.º 4
0
 public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin)
 {
     _globals = globals;
     _helper = helper;
     _cleanup = cleanup;
     _initBranch = initBranch;
     _rcheckin = rcheckin;
 }
Ejemplo n.º 5
0
 public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch)
 {
     this.globals = globals;
     this.stdout = stdout;
     this.helper = helper;
     this.cleanup = cleanup;
     this.initBranch = initBranch;
     //[Temporary] Remove in the next version!
     initBranch.DontDisplayObsoleteMessage = true;
 }
Ejemplo n.º 6
0
 public InitBranch4Test(TextWriter stdout, Globals globals, Help helper, AuthorsFile authors)
     : base(stdout, globals, helper, authors)
 {
 }
Ejemplo n.º 7
0
 public InitBranch(Globals globals, Help helper, AuthorsFile authors)
 {
     _globals = globals;
     _helper = helper;
 }
Ejemplo n.º 8
0
 public Verify(Globals globals, TreeVerifier verifier, Help helper)
 {
     _globals = globals;
     _verifier = verifier;
     _helper = helper;
 }