Browse Source

Force-push to base repo's ref/pull/#/head (#3393)

* Force-push to base repo's ref/pull/#/head

Fixes force-pushing to pull request branches, otherwise failing with:

[...gitea/models/pull.go:1022 AddTestPullRequestTask()] [E] PushToBaseRepo: Push: exit status 1 - To /path/to/gitea-repositories/org/repo.git
 ! [rejected]        issue-fix -> refs/pull/20/head (non-fast-forward)

* format
tags/v1.4.0-rc1
Sandro Santilli 6 years ago
parent
commit
05ab747054
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      models/pull.go

+ 1
- 0
models/pull.go View File

@@ -1010,6 +1010,7 @@ func (pr *PullRequest) PushToBaseRepo() (err error) {
if err = git.Push(headRepoPath, git.PushOptions{
Remote: tmpRemoteName,
Branch: fmt.Sprintf("%s:%s", pr.HeadBranch, headFile),
Force: true,
}); err != nil {
return fmt.Errorf("Push: %v", err)
}

Loading…
Cancel
Save