mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Backport #12900 We should only update is_empty, default_branch and updated time columns during commitRepoAction and not update other columns as we risk overwriting incorrect information. Fix #11823 Fix #10536 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -8,6 +8,7 @@ import (
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"html"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"code.gitea.io/gitea/models"
 | 
			
		||||
	"code.gitea.io/gitea/modules/git"
 | 
			
		||||
@@ -176,7 +177,7 @@ func CommitRepoAction(optsList ...*CommitRepoActionOptions) error {
 | 
			
		||||
			var err error
 | 
			
		||||
			if repo != nil {
 | 
			
		||||
				// Change repository empty status and update last updated time.
 | 
			
		||||
				if err := models.UpdateRepository(repo, false); err != nil {
 | 
			
		||||
				if err := models.UpdateRepositoryUpdatedTime(repo.ID, time.Now()); err != nil {
 | 
			
		||||
					return fmt.Errorf("UpdateRepository: %v", err)
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
@@ -204,6 +205,10 @@ func CommitRepoAction(optsList ...*CommitRepoActionOptions) error {
 | 
			
		||||
				}
 | 
			
		||||
				gitRepo.Close()
 | 
			
		||||
			}
 | 
			
		||||
			// Update the is empty and default_branch columns
 | 
			
		||||
			if err := models.UpdateRepositoryCols(repo, "default_branch", "is_empty"); err != nil {
 | 
			
		||||
				return fmt.Errorf("UpdateRepositoryCols: %v", err)
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		opType := models.ActionCommitRepo
 | 
			
		||||
@@ -274,7 +279,7 @@ func CommitRepoAction(optsList ...*CommitRepoActionOptions) error {
 | 
			
		||||
 | 
			
		||||
	if repo != nil {
 | 
			
		||||
		// Change repository empty status and update last updated time.
 | 
			
		||||
		if err := models.UpdateRepository(repo, false); err != nil {
 | 
			
		||||
		if err := models.UpdateRepositoryUpdatedTime(repo.ID, time.Now()); err != nil {
 | 
			
		||||
			return fmt.Errorf("UpdateRepository: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user