Skip to content

Commit

Permalink
Enforce setting HEAD in wiki to master (#13950) (#13961)
Browse files Browse the repository at this point in the history
The default branch in wikis must be master - therefore forcibly set the HEAD
to master.

Fix #13846

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: 6543 <6543@obermui.de>

Co-authored-by: zeripath <art27@cantab.net>
  • Loading branch information
6543 and zeripath committed Dec 12, 2020
1 parent 0d7cb23 commit 05ee88e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions services/wiki/wiki.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ func InitWiki(repo *models.Repository) error {
return fmt.Errorf("InitRepository: %v", err)
} else if err = repo_module.CreateDelegateHooks(repo.WikiPath()); err != nil {
return fmt.Errorf("createDelegateHooks: %v", err)
} else if _, err = git.NewCommand("symbolic-ref", "HEAD", git.BranchPrefix+"master").RunInDir(repo.WikiPath()); err != nil {
return fmt.Errorf("unable to set default wiki branch to master: %v", err)
}
return nil
}
Expand Down

0 comments on commit 05ee88e

Please sign in to comment.