Inheritance: GitTfsCommand
Beispiel #1
0
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch = fetch;
     _quickFetch = quickFetch;
     _globals = globals;
     _remoteOptions = remoteOptions;
 }
Beispiel #2
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
 }
Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #5
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     _fetch = fetch;
     _init = init;
     _globals = globals;
     _initBranch = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
Beispiel #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;
 }
Beispiel #7
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch = fetch;
     this.globals = globals;
 }
Beispiel #8
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.globals = globals;
     this.stdout = stdout;
 }
Beispiel #9
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
 }
Beispiel #10
0
 public Pull(Globals globals, Fetch fetch)
 {
     _fetch = fetch;
     _globals = globals;
 }
Beispiel #11
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch   = fetch;
     this.globals = globals;
 }
Beispiel #12
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch   = fetch;
     this.init    = init;
     this.globals = globals;
 }
Beispiel #13
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch   = fetch;
     this.globals = globals;
     this.stdout  = stdout;
 }