Merge pull request #1829 from ethantkoenig/no_branches

Commitless repos should be bare
This commit is contained in:
Andrey Nering 2017-06-12 11:05:01 -03:00 committed by GitHub
commit 635273cea6
2 changed files with 5 additions and 1 deletions

View file

@ -390,6 +390,10 @@ func RepoRef() macaron.Handler {
if err != nil {
ctx.Handle(500, "GetBranches", err)
return
} else if len(brs) == 0 {
err = fmt.Errorf("No branches in non-bare repository %s",
ctx.Repo.GitRepo.Path)
ctx.Handle(500, "GetBranches", err)
}
refName = brs[0]
}