8 lines
215 B
Bash
Executable File
8 lines
215 B
Bash
Executable File
#!/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"
|