8 lines
120 B
Plaintext
8 lines
120 B
Plaintext
|
#!/bin/sh
|
||
|
# Create a new repo, commit and push
|
||
|
git init
|
||
|
git add .
|
||
|
git commit -m "First strike"
|
||
|
git origin "$@"
|
||
|
git push
|