public GitCommitService(
     IGitCmdService gitCmdService,
     IGitDiffService gitDiffService,
     IGitLogService gitLogService,
     IWorkingFolder workingFolder)
 {
     this.gitCmdService  = gitCmdService;
     this.gitDiffService = gitDiffService;
     this.gitLogService  = gitLogService;
     this.workingFolder  = workingFolder;
 }
Ejemplo n.º 2
0
 public GitCheckoutService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 3
0
 public GitNotesService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 4
0
 public GitConfigService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
 public GitBranchService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 6
0
 public GitFetchService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 7
0
 public GitRepoService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 8
0
 public GitMergeService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 9
0
 public GitPushService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 10
0
 public GitStatusService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }
Ejemplo n.º 11
0
 public GitTagService(IGitCmdService gitCmdService)
 {
     this.gitCmdService = gitCmdService;
 }