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
This commit is contained in:
parent
9d9ad1b59f
commit
ce272f2e53
1 changed files with 7 additions and 7 deletions
|
@ -75,16 +75,16 @@ func InitRepository(repoPath string, bare bool) error {
|
||||||
|
|
||||||
// IsEmpty Check if repository is empty.
|
// IsEmpty Check if repository is empty.
|
||||||
func (repo *Repository) IsEmpty() (bool, error) {
|
func (repo *Repository) IsEmpty() (bool, error) {
|
||||||
var errbuf strings.Builder
|
var errbuf, output strings.Builder
|
||||||
if err := NewCommand("log", "-1").RunInDirPipeline(repo.Path, nil, &errbuf); err != nil {
|
if err := NewCommand("rev-list", "--all", "--count", "--max-count=1").RunInDirPipeline(repo.Path, &output, &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
|
|
||||||
}
|
|
||||||
return true, fmt.Errorf("check empty: %v - %s", err, errbuf.String())
|
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
|
// CloneRepoOptions options when clone a repository
|
||||||
|
|
Reference in a new issue