Inheritance: GitTfsCommand
Exemplo n.º 1
0
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch = fetch;
     _quickFetch = quickFetch;
     _globals = globals;
     _remoteOptions = remoteOptions;
 }
Exemplo n.º 2
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
 }
Exemplo n.º 3
0
 public Subtree(TextWriter stdout, Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     this._stdout = stdout;
     this._fetch = fetch;
     this._quickFetch = quickFetch;
     this._globals = globals;
     this._remoteOptions = remoteOptions;
 }
Exemplo n.º 4
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
     this.stdout = stdout;
 }
Exemplo n.º 5
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     _fetch = fetch;
     _init = init;
     _globals = globals;
     _initBranch = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
Exemplo n.º 6
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
     //[Temporary] Remove in the next version!
     initBranch.DontDisplayObsoleteMessage = true;
     this.stdout = stdout;
 }
Exemplo n.º 7
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch = fetch;
     this.globals = globals;
 }
Exemplo n.º 8
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.globals = globals;
     this.stdout = stdout;
 }
Exemplo n.º 9
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
 }
Exemplo n.º 10
0
 public Pull(Globals globals, Fetch fetch)
 {
     _fetch = fetch;
     _globals = globals;
 }
Exemplo n.º 11
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch   = fetch;
     this.globals = globals;
 }
Exemplo n.º 12
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch   = fetch;
     this.init    = init;
     this.globals = globals;
 }
Exemplo n.º 13
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch   = fetch;
     this.globals = globals;
     this.stdout  = stdout;
 }