mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Propagate context and ensure git commands run in request context (#17868)
This PR continues the work in #17125 by progressively ensuring that git commands run within the request context. This now means that the if there is a git repo already open in the context it will be used instead of reopening it. Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -132,7 +132,7 @@ func (g *GiteaLocalUploader) CreateRepo(repo *base.Repository, opts base.Migrate
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	g.gitRepo, err = git.OpenRepository(r.RepoPath())
 | 
			
		||||
	g.gitRepo, err = git.OpenRepositoryCtx(g.ctx, r.RepoPath())
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -669,7 +669,7 @@ func (g *GiteaLocalUploader) newPullRequest(pr *base.PullRequest) (*models.PullR
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			if ok {
 | 
			
		||||
				_, err = git.NewCommand("fetch", remote, pr.Head.Ref).RunInDir(g.repo.RepoPath())
 | 
			
		||||
				_, err = git.NewCommandContext(g.ctx, "fetch", remote, pr.Head.Ref).RunInDir(g.repo.RepoPath())
 | 
			
		||||
				if err != nil {
 | 
			
		||||
					log.Error("Fetch branch from %s failed: %v", pr.Head.CloneURL, err)
 | 
			
		||||
				} else {
 | 
			
		||||
@@ -693,7 +693,7 @@ func (g *GiteaLocalUploader) newPullRequest(pr *base.PullRequest) (*models.PullR
 | 
			
		||||
	} else {
 | 
			
		||||
		head = pr.Head.Ref
 | 
			
		||||
		// Ensure the closed PR SHA still points to an existing ref
 | 
			
		||||
		_, err = git.NewCommand("rev-list", "--quiet", "-1", pr.Head.SHA).RunInDir(g.repo.RepoPath())
 | 
			
		||||
		_, err = git.NewCommandContext(g.ctx, "rev-list", "--quiet", "-1", pr.Head.SHA).RunInDir(g.repo.RepoPath())
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			if pr.Head.SHA != "" {
 | 
			
		||||
				// Git update-ref remove bad references with a relative path
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user