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
 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;
 }
示例#4
0
 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;
 }
示例#5
0
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     this.fetch          = fetch;
     this.init           = init;
     this.globals        = globals;
     this.initBranch     = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
示例#6
0
 public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin)
 {
     _globals    = globals;
     _helper     = helper;
     _cleanup    = cleanup;
     _initBranch = initBranch;
     _rcheckin   = rcheckin;
 }
示例#7
0
 public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin)
 {
     this.globals    = globals;
     this.helper     = helper;
     this.cleanup    = cleanup;
     this.initBranch = initBranch;
     this.rcheckin   = rcheckin;
 }
示例#8
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;
 }
示例#9
0
 public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin)
 {
     _globals = globals;
     _helper = helper;
     _cleanup = cleanup;
     _initBranch = initBranch;
     _rcheckin = rcheckin;
 }
示例#10
0
文件: Clone.cs 项目: upzone/git-tfs
 public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch)
 {
     _fetch              = fetch;
     _init               = init;
     _globals            = globals;
     _initBranch         = initBranch;
     globals.GcCountdown = globals.GcPeriod;
 }
示例#11
0
 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;
 }
示例#12
0
文件: Clone.cs 项目: irontoby/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;
 }
示例#13
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;
 }
示例#14
0
 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;
 }
示例#15
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;
 }
示例#16
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!
     if (initBranch != null)
     {
         initBranch.DontDisplayObsoleteMessage = true;
     }
     this.stdout         = stdout;
     globals.GcCountdown = globals.GcPeriod;
 }