7 lines
120 B
Bash
Executable file
7 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
# Create a new repo, commit and push
|
|
git init
|
|
git add .
|
|
git commit -m "First Strike"
|
|
git origin "$@"
|
|
git push
|