상속: GitTfsCommand
예제 #1
0
파일: Clone.cs 프로젝트: darthvid/git-tfs
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
     this.initBranch = initBranch;
 }
예제 #2
0
파일: Clone.cs 프로젝트: nickwb/git-tfs
 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;
 }
예제 #3
0
파일: Clone.cs 프로젝트: pmiossec/git-tfs
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     _fetch = fetch;
     _init = init;
     _globals = globals;
     _initBranch = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
예제 #4
0
파일: Clone.cs 프로젝트: Kadajett/git-tfs
 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;
 }
예제 #5
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch)
     : base(globals, fetch, init)
 {
 }
예제 #6
0
파일: Clone.cs 프로젝트: adamrofer/git-tfs
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
 }
예제 #7
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch) : base(globals, fetch, init)
 {
 }
예제 #8
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch, TextWriter stdout)
     : base(globals, fetch, init, null, stdout)
 {
 }
예제 #9
0
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch   = fetch;
     this.init    = init;
     this.globals = globals;
 }