Crie o repositório bitbucket.org a partir da linha de comando
#!/bin/bashfunction bitbucket_create_repo () { curl -k -X POST –user username:password “https://api.bitbucket.org/1.0/repositories” -d “name=$1&is_private=true”} Uso $ bitbucket_create_repo REPO_NAME
Continuar lendo