mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix errors caused by force push (#1927)
This commit is contained in:
		@@ -700,12 +700,13 @@ func UpdateLocalCopyBranch(repoPath, localPath, branch string) error {
 | 
			
		||||
		}); err != nil {
 | 
			
		||||
			return fmt.Errorf("git checkout %s: %v", branch, err)
 | 
			
		||||
		}
 | 
			
		||||
		if err := git.Pull(localPath, git.PullRemoteOptions{
 | 
			
		||||
			Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second,
 | 
			
		||||
			Remote:  "origin",
 | 
			
		||||
			Branch:  branch,
 | 
			
		||||
		}); err != nil {
 | 
			
		||||
			return fmt.Errorf("git pull origin %s: %v", branch, err)
 | 
			
		||||
 | 
			
		||||
		_, err := git.NewCommand("fetch", "origin").RunInDir(localPath)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return fmt.Errorf("git fetch origin: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
		if err := git.ResetHEAD(localPath, true, "origin/"+branch); err != nil {
 | 
			
		||||
			return fmt.Errorf("git reset --hard origin/%s: %v", branch, err)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user