1package repo23import (4 "fmt"56 "github.com/charmbracelet/soft-serve/pkg/config"7 "github.com/charmbracelet/soft-serve/pkg/ui/common"8)910func defaultEmptyRepoMsg(cfg *config.Config, repo string) string {11 return fmt.Sprintf(`# Quick Start1213Get started by cloning this repository, add your files, commit, and push.1415## Clone this repository.1617`+"```"+`sh18git clone %[1]s19`+"```"+`2021## Creating a new repository on the command line2223`+"```"+`sh24touch README.md25git init26git add README.md27git branch -M main28git commit -m "first commit"29git remote add origin %[1]s30git push -u origin main31`+"```"+`3233## Pushing an existing repository from the command line3435`+"```"+`sh36git remote add origin %[1]s37git push -u origin main38`+"```"+`39`, common.RepoURL(cfg.SSH.PublicURL, repo))40}