mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	fix(api): refactor branch and tag existence checks (#30618)
- Update branch existence check to also include tag existence check - Adjust error message for branch/tag existence check ref: https://github.com/go-gitea/gitea/pull/30349 --------- Signed-off-by: appleboy <appleboy.tw@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		@@ -1082,11 +1082,10 @@ func parseCompareInfo(ctx *context.APIContext, form api.CreatePullRequestOption)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ctx.Repo.PullRequest.SameRepo = isSameRepo
 | 
						ctx.Repo.PullRequest.SameRepo = isSameRepo
 | 
				
			||||||
	log.Info("Base branch: %s", baseBranch)
 | 
						log.Trace("Repo path: %q, base branch: %q, head branch: %q", ctx.Repo.GitRepo.Path, baseBranch, headBranch)
 | 
				
			||||||
	log.Info("Repo path: %s", ctx.Repo.GitRepo.Path)
 | 
					 | 
				
			||||||
	// Check if base branch is valid.
 | 
						// Check if base branch is valid.
 | 
				
			||||||
	if !ctx.Repo.GitRepo.IsBranchExist(baseBranch) {
 | 
						if !ctx.Repo.GitRepo.IsBranchExist(baseBranch) && !ctx.Repo.GitRepo.IsTagExist(baseBranch) {
 | 
				
			||||||
		ctx.NotFound("IsBranchExist")
 | 
							ctx.NotFound("BaseNotExist")
 | 
				
			||||||
		return nil, nil, nil, nil, "", ""
 | 
							return nil, nil, nil, nil, "", ""
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1149,7 +1148,7 @@ func parseCompareInfo(ctx *context.APIContext, form api.CreatePullRequestOption)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Check if head branch is valid.
 | 
						// Check if head branch is valid.
 | 
				
			||||||
	if !headGitRepo.IsBranchExist(headBranch) {
 | 
						if !headGitRepo.IsBranchExist(headBranch) && !headGitRepo.IsTagExist(headBranch) {
 | 
				
			||||||
		headGitRepo.Close()
 | 
							headGitRepo.Close()
 | 
				
			||||||
		ctx.NotFound()
 | 
							ctx.NotFound()
 | 
				
			||||||
		return nil, nil, nil, nil, "", ""
 | 
							return nil, nil, nil, nil, "", ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user