Inheritance: GitTfsCommand
コード例 #1
1
ファイル: InitBranch.cs プロジェクト: RomanKruglyakov/git-tfs
 public InitBranch(TextWriter stdout, Globals globals, Help helper, AuthorsFile authors)
 {
     _stdout = stdout;
     _globals = globals;
     _helper = helper;
     _authors = authors;
 }
コード例 #2
0
ファイル: Verify.cs プロジェクト: XinChenBug/git-tfs
 public Verify(Globals globals, TreeVerifier verifier, TextWriter stdout, Help helper)
 {
     _globals = globals;
     _verifier = verifier;
     _stdout = stdout;
     _helper = helper;
 }
コード例 #3
0
ファイル: Branch.cs プロジェクト: JamesDunne/git-tfs
 public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch)
 {
     this.globals = globals;
     this.stdout = stdout;
     this.helper = helper;
     this.cleanup = cleanup;
     this.initBranch = initBranch;
 }
コード例 #4
0
ファイル: Branch.cs プロジェクト: pmiossec/git-tfs
 public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin)
 {
     _globals = globals;
     _helper = helper;
     _cleanup = cleanup;
     _initBranch = initBranch;
     _rcheckin = rcheckin;
 }
コード例 #5
0
ファイル: Branch.cs プロジェクト: zidad/git-tfs
 public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch)
 {
     this.globals = globals;
     this.stdout = stdout;
     this.helper = helper;
     this.cleanup = cleanup;
     this.initBranch = initBranch;
     //[Temporary] Remove in the next version!
     initBranch.DontDisplayObsoleteMessage = true;
 }
コード例 #6
0
ファイル: InitBranchTest.cs プロジェクト: nobitagamer/git-tfs
 public InitBranch4Test(TextWriter stdout, Globals globals, Help helper, AuthorsFile authors)
     : base(stdout, globals, helper, authors)
 {
 }
コード例 #7
0
ファイル: InitBranch.cs プロジェクト: pmiossec/git-tfs
 public InitBranch(Globals globals, Help helper, AuthorsFile authors)
 {
     _globals = globals;
     _helper = helper;
 }
コード例 #8
0
ファイル: Verify.cs プロジェクト: pmiossec/git-tfs
 public Verify(Globals globals, TreeVerifier verifier, Help helper)
 {
     _globals = globals;
     _verifier = verifier;
     _helper = helper;
 }