dotfiles/github-init

6 lines
106 B
Bash
Executable file

#!/bin/bash
git init $2
cd $2
git remote add origin git@github.com:$1/$2.git
git pull origin master
cd ..