commit e0476717d446d0d30fda764fa137ed872879b70c parent ea23bcbcfb62ef2c6ba51ae02abf434c9d7b2e92 Author: Andrew Laack <andrew@laack.co> Date: Sun, 28 Sep 2025 19:11:05 -0500 Init Diffstat:
| A | github/create.sh | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/github/create.sh b/github/create.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +NAME=$(echo /dev/random | sha256sum | awk '{print $1}') + +gh repo create $NAME --private --clone + +mv $1 $NAME + +cd $NAME +git add . && git commit -m "Init" && git push --set-upstream origin master