Como comprometer o código com o Bitbucket pela primeira vez
git init
git add --all
git commit -m "Initial Commit"
git remote add origin <the URL for your Bitbucket repository>
git push -u origin master
Hina