|
|
@ -20,7 +20,6 @@ import ( |
|
|
|
"github.com/gogits/gogs/modules/log" |
|
|
|
"github.com/gogits/gogs/modules/log" |
|
|
|
"github.com/gogits/gogs/modules/process" |
|
|
|
"github.com/gogits/gogs/modules/process" |
|
|
|
"github.com/gogits/gogs/modules/setting" |
|
|
|
"github.com/gogits/gogs/modules/setting" |
|
|
|
"strconv" |
|
|
|
|
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
type PullRequestType int |
|
|
|
type PullRequestType int |
|
|
@ -483,35 +482,28 @@ func (pr *PullRequest) UpdatePatch() (err error) { |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// PushToBaseRepo pushes commits from branches of head repository to
|
|
|
|
|
|
|
|
// corresponding branches of base repository.
|
|
|
|
|
|
|
|
// FIXME: could fail after user force push head repo, should we always force push here?
|
|
|
|
|
|
|
|
// FIXME: Only push branches that are actually updates?
|
|
|
|
func (pr *PullRequest) PushToBaseRepo() (err error) { |
|
|
|
func (pr *PullRequest) PushToBaseRepo() (err error) { |
|
|
|
log.Trace("PushToBase[%d]: pushing commits to base repo refs/pull/%d/head", pr.ID, pr.ID) |
|
|
|
log.Trace("PushToBaseRepo[%[1]d]: pushing commits to base repo 'refs/pull/%[1]d/head'", pr.ID) |
|
|
|
|
|
|
|
|
|
|
|
branch := pr.HeadBranch |
|
|
|
headRepoPath := pr.HeadRepo.RepoPath() |
|
|
|
|
|
|
|
headGitRepo, err := git.OpenRepository(headRepoPath) |
|
|
|
if err = pr.BaseRepo.GetOwner(); err != nil { |
|
|
|
|
|
|
|
return fmt.Errorf("Could not get base repo owner data: %v", err) |
|
|
|
|
|
|
|
} else if err = pr.HeadRepo.GetOwner(); err != nil { |
|
|
|
|
|
|
|
return fmt.Errorf("Could not get head repo owner data: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
headRepoPath := RepoPath(pr.HeadRepo.Owner.Name, pr.HeadRepo.Name) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prIdStr := strconv.FormatInt(pr.ID, 10) |
|
|
|
|
|
|
|
tmpRemoteName := "tmp-pull-" + branch + "-" + prIdStr |
|
|
|
|
|
|
|
repo, err := git.OpenRepository(headRepoPath) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
return fmt.Errorf("Unable to open head repository: %v", err) |
|
|
|
return fmt.Errorf("OpenRepository: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if err = repo.AddRemote(tmpRemoteName, RepoPath(pr.BaseRepo.Owner.Name, pr.BaseRepo.Name), false); err != nil { |
|
|
|
tmpRemoteName := fmt.Sprintf("tmp-pull-%d", pr.ID) |
|
|
|
return fmt.Errorf("Unable to add remote to head repository: %v", err) |
|
|
|
if err = headGitRepo.AddRemote(tmpRemoteName, pr.BaseRepo.RepoPath(), false); err != nil { |
|
|
|
|
|
|
|
return fmt.Errorf("headGitRepo.AddRemote: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
// Make sure to remove the remote even if the push fails
|
|
|
|
// Make sure to remove the remote even if the push fails
|
|
|
|
defer repo.RemoveRemote(tmpRemoteName) |
|
|
|
defer headGitRepo.RemoveRemote(tmpRemoteName) |
|
|
|
|
|
|
|
|
|
|
|
pushRef := branch+":"+"refs/pull/"+prIdStr+"/head" |
|
|
|
if err = git.Push(headRepoPath, tmpRemoteName, fmt.Sprintf("%s:refs/pull/%d/head", pr.HeadBranch, pr.Index)); err != nil { |
|
|
|
if err = git.Push(headRepoPath, tmpRemoteName, pushRef); err != nil { |
|
|
|
return fmt.Errorf("Push: %v", err) |
|
|
|
return fmt.Errorf("Error pushing: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return nil |
|
|
|
return nil |
|
|
|