Inheritance: 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
ファイル: QuickClone.cs プロジェクト: roend83/git-tfs
 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
ファイル: QuickClone.cs プロジェクト: johnedmonds/git-tfs
 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;
 }