Branches
Time to branch out
It's a good idea to create a separate branch for each new feature. Learn how
Get started the easy way
Creating a README or a .hgignore is a quick and easy way to get something into your repository.
Create a README Create a .hgignore
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
hg push https://bitbucket.org/danjac/old_blog
hg clone https://bitbucket.org/danjac/old_blog
cd old_blog
echo "# My project's README" >> README.md
hg add README.md
hg commit -m "Initial commit"
hg push