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