push local project to bitbucket code example
Example 1: add local project to bitbucket
git remote add origin https://[email protected]/ommunedevelopers/repository-name.git
Example 2: how to push code to bitbucket
git init
git add --all
git commit -m "Initial Commit"