summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2023-08-17 13:12:14 +0800
committerGitHub <noreply@github.com>2023-08-17 05:12:14 +0000
commit7da85fa0c3d7ddf4907ca74ef81ee532d768df87 (patch)
tree65241271c4b8d2aa5e9710ff5cf489d8ff730942 /modules
parent0ac8b774e95cecd1050d7a759f3830b3198b63fd (diff)
downloadgitea-7da85fa0c3d7ddf4907ca74ef81ee532d768df87.tar.gz
gitea-7da85fa0c3d7ddf4907ca74ef81ee532d768df87.zip
Sync repo's IsEmpty status correctly (#26517) (#26560)
Backport #26517 by @wxiaoguang Close #26509 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/git/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/repo.go b/modules/git/repo.go
index 61930ab31d..5681d39c3b 100644
--- a/modules/git/repo.go
+++ b/modules/git/repo.go
@@ -80,7 +80,7 @@ func InitRepository(ctx context.Context, repoPath string, bare bool) error {
// IsEmpty Check if repository is empty.
func (repo *Repository) IsEmpty() (bool, error) {
var errbuf, output strings.Builder
- if err := NewCommand(repo.Ctx).AddOptionFormat("--git-dir=%s", repo.Path).AddArguments("show-ref", "--head", "^HEAD$").
+ if err := NewCommand(repo.Ctx).AddOptionFormat("--git-dir=%s", repo.Path).AddArguments("rev-list", "-n", "1", "--all").
Run(&RunOpts{
Dir: repo.Path,
Stdout: &output,