12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
git init
|
|
|
|
git stage -A
|
|
git commit -m "init commit"
|
|
|
|
if [[ $1 != "-l" || $1 != "--local" ]]; then
|
|
gh repo create
|
|
git push --set-upstream origin main
|
|
fi
|