Skip to content

go-faster/template

template

Project template

Untemplate

Easiest way:

gh repo clone go-faster/template
export NAME=your-project-name
cp -r template "${NAME}"
cd "${NAME}"

rm -rf .git
git init
git commit -m "feat: init repo" --allow-empty

./template.sh
git add .
git commit -m "feat: init project"

gh repo create --source . --public "go-faster/${NAME}"
git push -u origin main