Adicione ao seu ~ / .bashrc:
gitinit() {
git init
git add .
git commit -am "init"
git remote add origin git@github.com:$1/$2.git
curl -u 'USER' https://api.github.com/orgs/$1/repos -d "{"name"":""$2""}""
git push -u origin master
}
alias gitinit=gitinit
“