Comment commettre du code à Bitbucket pour la première fois

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