Наследование: GitTfsCommand
Пример #1
0
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch = fetch;
     _quickFetch = quickFetch;
     _globals = globals;
     _remoteOptions = remoteOptions;
 }
Пример #2
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
 }
Пример #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;
 }
Пример #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;
 }
Пример #5
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     _fetch = fetch;
     _init = init;
     _globals = globals;
     _initBranch = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
Пример #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;
 }
Пример #7
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch = fetch;
     this.globals = globals;
 }
Пример #8
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.globals = globals;
     this.stdout = stdout;
 }
Пример #9
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
 }
Пример #10
0
 public Pull(Globals globals, Fetch fetch)
 {
     _fetch = fetch;
     _globals = globals;
 }
Пример #11
0
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch   = fetch;
     this.globals = globals;
 }
Пример #12
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch   = fetch;
     this.init    = init;
     this.globals = globals;
 }
Пример #13
0
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch   = fetch;
     this.globals = globals;
     this.stdout  = stdout;
 }