aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLunny Xiao2022-01-28 14:48:18 +0800
committerGitHub2022-01-28 14:48:18 +0800
commitce272f2e53062ca94e860e1565aa5e8ed9c670c2 (patch)
treea672feb940e49976e9bed3e155129821682196ef
parent9d9ad1b59fe062e4e87248a7333dc6414260815c (diff)
Fix broken when no commits and default branch is not master (#18424)
* Fix broken when no commits and default branch is not master * Fix IsEmpty check * Improve codes
-rw-r--r--modules/git/repo.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/git/repo.go b/modules/git/repo.go
index 43f329f44..53a8666d8 100644
--- a/modules/git/repo.go
+++ b/modules/git/repo.go
@@ -75,16 +75,16 @@ func InitRepository(repoPath string, bare bool) error {
// IsEmpty Check if repository is empty.
func (repo *Repository) IsEmpty() (bool, error) {
- var errbuf strings.Builder
- if err := NewCommand("log", "-1").RunInDirPipeline(repo.Path, nil, &errbuf); err != nil {
- if strings.Contains(errbuf.String(), "fatal: bad default revision 'HEAD'") ||
- strings.Contains(errbuf.String(), "fatal: your current branch 'master' does not have any commits yet") {
- return true, nil
- }
+ var errbuf, output strings.Builder
+ if err := NewCommand("rev-list", "--all", "--count", "--max-count=1").RunInDirPipeline(repo.Path, &output, &errbuf); err != nil {
return true, fmt.Errorf("check empty: %v - %s", err, errbuf.String())
}
- return false, nil
+ c, err := strconv.Atoi(strings.TrimSpace(output.String()))
+ if err != nil {
+ return true, fmt.Errorf("check empty: convert %s to count failed: %v", output.String(), err)
+ }
+ return c == 0, nil
}
// CloneRepoOptions options when clone a repository