8 lines
196 B
Bash
8 lines
196 B
Bash
#!/usr/bin/env sh
|
|
|
|
git init
|
|
git add -A
|
|
git commit "$1"
|
|
git branch -M main
|
|
git remote add origin git@github.com:"$(git config --get github.user)"/"$(basename "$(pwd)")".git
|
|
git push -u origin main
|