commit 3caf8291830a6deb952d1e255caf6b0c14cb30c8 Author: Brian Rogers Date: Wed May 13 07:52:37 2026 -0600 just starting diff --git a/bash/code-publish.sh b/bash/code-publish.sh new file mode 100644 index 0000000..c187fd4 --- /dev/null +++ b/bash/code-publish.sh @@ -0,0 +1,8 @@ +#!/usr/bin/bash + +publish () { + local repo_name + repo_name=$(basename "$PWD") + # replace this with basic git or gitea as needed + gh repo create "captbrogers/$repo_name" --private --source=. --remote=origin --push +}