Ensure that HEAD is updated to match default branch in template generation (#13948)
Fix #13912 Signed-off-by: Andrew Thornton <art27@cantab.net>release/v1.15
parent
f2f99a7d0c
commit
8e0548ed4a
|
@ -207,6 +207,14 @@ func generateGitContent(ctx models.DBContext, repo, templateRepo, generateRepo *
|
||||||
}
|
}
|
||||||
|
|
||||||
repo.DefaultBranch = templateRepo.DefaultBranch
|
repo.DefaultBranch = templateRepo.DefaultBranch
|
||||||
|
gitRepo, err := git.OpenRepository(repo.RepoPath())
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("openRepository: %v", err)
|
||||||
|
}
|
||||||
|
defer gitRepo.Close()
|
||||||
|
if err = gitRepo.SetDefaultBranch(repo.DefaultBranch); err != nil {
|
||||||
|
return fmt.Errorf("setDefaultBranch: %v", err)
|
||||||
|
}
|
||||||
if err = models.UpdateRepositoryCtx(ctx, repo, false); err != nil {
|
if err = models.UpdateRepositoryCtx(ctx, repo, false); err != nil {
|
||||||
return fmt.Errorf("updateRepository: %v", err)
|
return fmt.Errorf("updateRepository: %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -323,6 +323,7 @@ func initRepository(ctx models.DBContext, repoPath string, u *models.User, repo
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("openRepository: %v", err)
|
return fmt.Errorf("openRepository: %v", err)
|
||||||
}
|
}
|
||||||
|
defer gitRepo.Close()
|
||||||
if err = gitRepo.SetDefaultBranch(repo.DefaultBranch); err != nil {
|
if err = gitRepo.SetDefaultBranch(repo.DefaultBranch); err != nil {
|
||||||
return fmt.Errorf("setDefaultBranch: %v", err)
|
return fmt.Errorf("setDefaultBranch: %v", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue