mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Move git command to git/gitcmd (#35483)
The name cmd is already used in many places and may cause conflicts, so I chose `gitcmd` instead to minimize potential naming conflicts.
This commit is contained in:
		| @@ -5,13 +5,13 @@ package pull | ||||
|  | ||||
| import ( | ||||
| 	repo_model "code.gitea.io/gitea/models/repo" | ||||
| 	"code.gitea.io/gitea/modules/git" | ||||
| 	"code.gitea.io/gitea/modules/git/gitcmd" | ||||
| 	"code.gitea.io/gitea/modules/log" | ||||
| ) | ||||
|  | ||||
| // doMergeStyleFastForwardOnly merges the tracking into the current HEAD - which is assumed to be staging branch (equal to the pr.BaseBranch) | ||||
| func doMergeStyleFastForwardOnly(ctx *mergeContext) error { | ||||
| 	cmd := git.NewCommand("merge", "--ff-only").AddDynamicArguments(trackingBranch) | ||||
| 	cmd := gitcmd.NewCommand("merge", "--ff-only").AddDynamicArguments(trackingBranch) | ||||
| 	if err := runMergeCommand(ctx, repo_model.MergeStyleFastForwardOnly, cmd); err != nil { | ||||
| 		log.Error("%-v Unable to merge tracking into base: %v", ctx.pr, err) | ||||
| 		return err | ||||
|   | ||||
		Reference in New Issue
	
	Block a user