상속: GitTfsCommand
예제 #1
0
파일: Subtree.cs 프로젝트: pmiossec/git-tfs
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch = fetch;
     _quickFetch = quickFetch;
     _globals = globals;
     _remoteOptions = remoteOptions;
 }
예제 #2
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;
 }
예제 #3
0
파일: Subtree.cs 프로젝트: Galilyou/git-tfs
 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
파일: 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;
 }
예제 #5
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;
 }
예제 #6
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;
 }
예제 #7
0
파일: Pull.cs 프로젝트: darthvid/git-tfs
 public Pull(Globals globals, Fetch fetch)
 {
     this.fetch = fetch;
     this.globals = globals;
 }
예제 #8
0
파일: Pull.cs 프로젝트: XinChenBug/git-tfs
 public Pull(Globals globals, Fetch fetch, TextWriter stdout)
 {
     this.fetch = fetch;
     this.globals = globals;
     this.stdout = stdout;
 }
예제 #9
0
파일: Clone.cs 프로젝트: adamrofer/git-tfs
 public Clone(Globals globals, Fetch fetch, Init init)
 {
     this.fetch = fetch;
     this.init = init;
     this.globals = globals;
 }
예제 #10
0
파일: Pull.cs 프로젝트: pmiossec/git-tfs
 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;
 }