Clone the Discourse Skeleton Plugin

Note: only username works–can’t get organization to work for some reason

Paste this

git clone GitHub - discourse/discourse-plugin-skeleton: Template for Discourse plugins
mv discourse-plugin-skeleton =plugin_name=
cd =plugin_name=
rm -rf .git
gh repo create =plugin_name= -d “=description=” --private
git init
git remote add origin git@github.com:=organization=/=repository=
git add .
git commit -m “initial commit”
git push -u origin main

git clone https://github.com/discourse/discourse-plugin-skeleton
mv discourse-plugin-skeleton =plugin_name=
cd =plugin_name=
rm -rf .git
gh repo create =plugin_name= -d "=description=" --private 
git init
git remote add origin git@github.com:=organization=/=repository=
git add .
git commit -m "initial commit"
git push -u origin main

I wish I could figure out how to get gh create repo to do it in the literatecomputing organization. It may be an issue with my key/authentication.