Fix git 2.11 error when checking IsEmpty (#27393) (#27396)

Backport #27393 by @wxiaoguang

Fix #27389

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
(cherry picked from commit acedf0f702d7037c89b87384bc399141d5d0af98)
This commit is contained in:
Giteabot 2023-10-02 23:30:04 +08:00 committed by Earl Warren
parent 3e8c3b7c09
commit 4c21b82e18
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -86,7 +86,8 @@ func (repo *Repository) IsEmpty() (bool, error) {
Stdout: &output,
Stderr: &errbuf,
}); err != nil {
if err.Error() == "exit status 1" && errbuf.String() == "" {
if (err.Error() == "exit status 1" && strings.TrimSpace(errbuf.String()) == "") || err.Error() == "exit status 129" {
// git 2.11 exits with 129 if the repo is empty
return true, nil
}
return true, fmt.Errorf("check empty: %w - %s", err, errbuf.String())