Source
Code helps me work better
Start by adding a README or pushing up some code. Learn how
Get started the easy way
Creating a README or a .gitignore is a quick and easy way to get something into your repository.
Create a README Create a .gitignore
Get started with command line
-
Step 1: Switch to your repository's directory
cd /path/to/your/repo -
Step 2: Connect your existing repository to Bitbucket
git remote add origin https://bitbucket.org/tback/boxes.git git push -u origin master
git clone https://bitbucket.org/tback/boxes.git
cd boxes
echo "# My project's README" >> README.md
git add README.md
git commit -m "Initial commit"
git push -u origin master