Browse Source

Fix deleted branch isn't removed when push the branch again (#9516) (#9524)

tags/v1.10.2
Lunny Xiao 4 years ago
parent
commit
9409ac9030
No account linked to committer's email address
2 changed files with 12 additions and 1 deletions
  1. 6
    0
      models/branches.go
  2. 6
    1
      modules/repofiles/update.go

+ 6
- 0
models/branches.go View File

@@ -480,6 +480,12 @@ func (deletedBranch *DeletedBranch) LoadUser() {
deletedBranch.DeletedBy = user
}

// RemoveDeletedBranch removes all deleted branches
func RemoveDeletedBranch(repoID int64, branch string) error {
_, err := x.Where("repo_id=? AND name=?", repoID, branch).Delete(new(DeletedBranch))
return err
}

// RemoveOldDeletedBranches removes old deleted branches
func RemoveOldDeletedBranches() {
log.Trace("Doing: DeletedBranchesCleanup")

+ 6
- 1
modules/repofiles/update.go View File

@@ -453,10 +453,15 @@ func PushUpdate(repo *models.Repository, branch string, opts models.PushUpdateOp
}
}
} else if !isDelRef {
branchName := opts.RefFullName[len(git.BranchPrefix):]
if err = models.RemoveDeletedBranch(repo.ID, branchName); err != nil {
log.Error("models.RemoveDeletedBranch %s/%s failed: %v", repo.ID, branchName, err)
}

// If is branch reference

// Clear cache for branch commit count
cache.Remove(repo.GetCommitsCountCacheKey(opts.RefFullName[len(git.BranchPrefix):], true))
cache.Remove(repo.GetCommitsCountCacheKey(branchName, true))

newCommit, err := gitRepo.GetCommit(opts.NewCommitID)
if err != nil {

Loading…
Cancel
Save