Browse Source

Commitless repos should be bare

for-closed-social
Ethan Koenig 7 years ago
parent
commit
c85ff532e9
2 changed files with 5 additions and 1 deletions
  1. +1
    -1
      models/action.go
  2. +4
    -0
      modules/context/repo.go

+ 1
- 1
models/action.go View File

@ -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)
}

+ 4
- 0
modules/context/repo.go View File

@ -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]
}

Loading…
Cancel
Save