//Set up Git on your machine if you haven't already.
mkdir /path/to/your/project cd /path/to/your/project git init git remote add origin ssh://git@bitbucket.org/a9un9hari/l.git
//You already have a Git repository on your computer. Let's push it up. cd /path/to/my/repo git remote add origin ssh://git@bitbucket.org/a9un9hari/l.git git push -u origin --all # pushes up the repo and its refs for the first time git push -u origin --tags # pushes up any tags