gh-upload

This commit is contained in:
eneller
2024-08-26 11:21:45 +02:00
parent 169f4f10f1
commit 686ee5f204
2 changed files with 28 additions and 0 deletions

10
.local/bin/gh-upload Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# gh-cli shortcut to upload a repo to github
# takes an optional flag --private
# and an optional parameter which repo should be uploaded, defaults to CWD
if [ "$1" = "--private" ]; then
gh repo create --push --private --source ${2-.}
else
gh repo create --push --public --source ${2-.}
fi