8 lines
215 B
Plaintext
8 lines
215 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Initialize git repo and add remotes.
|
||
|
|
||
|
git init
|
||
|
git remote add origin "ssh://git@git.samedamci.me:8953/samedamci/${PWD##*/}.git"
|
||
|
git remote set-url --add origin "git@github.com:samedamci/${PWD##*/}.git"
|