bagaimana melakukan kode ke bitbucket pertama kali

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