diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-05-28 22:25:23 -0400 |
---|---|---|
committer | Ethan Koenig <ethantkoenig@gmail.com> | 2017-05-28 22:31:40 -0400 |
commit | c85ff532e9154920fc2bc3f6753a805615b924dc (patch) | |
tree | 66e724ba00bec5f714db404660ec8f791879bda2 | |
parent | e67ece26f0b97437200998b9b153b4c3a87a65aa (diff) | |
download | gitea-c85ff532e9154920fc2bc3f6753a805615b924dc.tar.gz gitea-c85ff532e9154920fc2bc3f6753a805615b924dc.zip |
Commitless repos should be bare
-rw-r--r-- | models/action.go | 2 | ||||
-rw-r--r-- | modules/context/repo.go | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/models/action.go b/models/action.go index a09e420660..6ca92cf93e 100644 --- a/models/action.go +++ b/models/action.go @@ -517,7 +517,7 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { } // Change repository bare status and update last updated time. - repo.IsBare = false + repo.IsBare = repo.IsBare && opts.Commits.Len <= 0 if err = UpdateRepository(repo, false); err != nil { return fmt.Errorf("UpdateRepository: %v", err) } diff --git a/modules/context/repo.go b/modules/context/repo.go index a59dc7da28..3b159a7aaa 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -392,6 +392,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] } |