Paste this to create the theme skeleton
git clone https://github.com/discourse/discourse-theme-skeleton
mv discourse-theme-skeleton =directory_name=
cd =directory_name=
rm -rf .git
Paste this to create a github repo and make an initial commit
gh repo create =directory_name= -d "=description=" --private
cd =directory_name=
git init
git remote add origin git@github.com:=git_user=/=directory_name=
git add .
git commit -m "initial commit"
git push -u origin main