mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	#1900 last updatede time not update after push
This commit is contained in:
		@@ -5,7 +5,7 @@ Gogs - Go Git Service [
 | 
			
		||||
 | 
			
		||||
##### Current version: 0.6.26 Beta
 | 
			
		||||
##### Current version: 0.6.27 Beta
 | 
			
		||||
 | 
			
		||||
<table>
 | 
			
		||||
    <tr>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const APP_VER = "0.6.26.1104 Beta"
 | 
			
		||||
const APP_VER = "0.6.27.1105 Beta"
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
			
		||||
 
 | 
			
		||||
@@ -338,12 +338,10 @@ func CommitRepoAction(
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Change repository bare status and update last updated time.
 | 
			
		||||
	if repo.IsBare {
 | 
			
		||||
	repo.IsBare = false
 | 
			
		||||
	if err = UpdateRepository(repo, false); err != nil {
 | 
			
		||||
		return fmt.Errorf("UpdateRepository: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	isNewBranch := false
 | 
			
		||||
	opType := COMMIT_REPO
 | 
			
		||||
 
 | 
			
		||||
@@ -47,10 +47,10 @@ func DeleteUpdateTaskByUUID(uuid string) error {
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error {
 | 
			
		||||
	isNew := strings.HasPrefix(oldCommitId, "0000000")
 | 
			
		||||
func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName string, userID int64) error {
 | 
			
		||||
	isNew := strings.HasPrefix(oldCommitID, "0000000")
 | 
			
		||||
	if isNew &&
 | 
			
		||||
		strings.HasPrefix(newCommitId, "0000000") {
 | 
			
		||||
		strings.HasPrefix(newCommitID, "0000000") {
 | 
			
		||||
		return fmt.Errorf("old rev and new rev both 000000")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@@ -60,23 +60,23 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
 | 
			
		||||
	gitUpdate.Dir = f
 | 
			
		||||
	gitUpdate.Run()
 | 
			
		||||
 | 
			
		||||
	isDel := strings.HasPrefix(newCommitId, "0000000")
 | 
			
		||||
	isDel := strings.HasPrefix(newCommitID, "0000000")
 | 
			
		||||
	if isDel {
 | 
			
		||||
		log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userId)
 | 
			
		||||
		log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userID)
 | 
			
		||||
		return nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	repo, err := git.OpenRepository(f)
 | 
			
		||||
	gitRepo, err := git.OpenRepository(f)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return fmt.Errorf("runUpdate.Open repoId: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	ru, err := GetUserByName(repoUserName)
 | 
			
		||||
	user, err := GetUserByName(repoUserName)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return fmt.Errorf("runUpdate.GetUserByName: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	repos, err := GetRepositoryByName(ru.Id, repoName)
 | 
			
		||||
	repo, err := GetRepositoryByName(user.Id, repoName)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
@@ -84,7 +84,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
 | 
			
		||||
	// Push tags.
 | 
			
		||||
	if strings.HasPrefix(refName, "refs/tags/") {
 | 
			
		||||
		tagName := git.RefEndName(refName)
 | 
			
		||||
		tag, err := repo.GetTag(tagName)
 | 
			
		||||
		tag, err := gitRepo.GetTag(tagName)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			log.GitLogger.Fatal(4, "runUpdate.GetTag: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
@@ -102,14 +102,14 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
 | 
			
		||||
 | 
			
		||||
		commit := &base.PushCommits{}
 | 
			
		||||
 | 
			
		||||
		if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
 | 
			
		||||
			repos.ID, repoUserName, repoName, refName, commit, oldCommitId, newCommitId); err != nil {
 | 
			
		||||
		if err = CommitRepoAction(userID, user.Id, userName, actEmail,
 | 
			
		||||
			repo.ID, repoUserName, repoName, refName, commit, oldCommitID, newCommitID); err != nil {
 | 
			
		||||
			log.GitLogger.Fatal(4, "CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
 | 
			
		||||
		}
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	newCommit, err := repo.GetCommit(newCommitId)
 | 
			
		||||
	newCommit, err := gitRepo.GetCommit(newCommitID)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return fmt.Errorf("runUpdate GetCommit of newCommitId: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
@@ -122,7 +122,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
 | 
			
		||||
			return fmt.Errorf("CommitsBefore: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		l, err = newCommit.CommitsBeforeUntil(oldCommitId)
 | 
			
		||||
		l, err = newCommit.CommitsBeforeUntil(oldCommitID)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return fmt.Errorf("CommitsBeforeUntil: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
@@ -148,8 +148,8 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
 | 
			
		||||
			})
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
 | 
			
		||||
		repos.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitId, newCommitId); err != nil {
 | 
			
		||||
	if err = CommitRepoAction(userID, user.Id, userName, actEmail,
 | 
			
		||||
		repo.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitID, newCommitID); err != nil {
 | 
			
		||||
		return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
 
 | 
			
		||||
@@ -1 +1 @@
 | 
			
		||||
0.6.26.1104 Beta
 | 
			
		||||
0.6.27.1105 Beta
 | 
			
		||||
		Reference in New Issue
	
	Block a user