diff --git a/ignite/pkg/xgit/xgit.go b/ignite/pkg/xgit/xgit.go index 919889c98e..88ef52b108 100644 --- a/ignite/pkg/xgit/xgit.go +++ b/ignite/pkg/xgit/xgit.go @@ -33,7 +33,12 @@ func InitAndCommit(path string) error { return fmt.Errorf("open git repo %s: %w", path, err) } // not a git repo, creates a new one - repo, err = git.PlainInit(path, false) + repo, err = git.PlainInitWithOptions(path, &git.PlainInitOptions{ + InitOptions: git.InitOptions{ + DefaultBranch: plumbing.Main, + }, + Bare: false, + }) if err != nil { return fmt.Errorf("init git repo %s: %w", path, err) }