Authors: Georg Brandl and Armin Ronacher
Download site: http://bitbucket.org/birkenfeld/hgbb
Overview
This extension has two purposes:
access bitbucket repositories via short URIs like bb:[name/]repo
- conveniently do several bitbucket.org operations on the command line
Implemented URL schemas, usable instead of http://bitbucket.org/...:
- bb:repo
- clones your own "repo" repository, checkout via default method
- bb:username/repo
- clones the "repo" repository by username, checkout via default method
- bb+http:repo
- clones your own "repo" repository, checkout via http
- bb+http:username/repo
- clones the "repo" repository by username, checkout via http
- bb+ssh:repo
- clones your own "repo" repository, checkout via ssh
- bb+ssh:username/repo
- clones the "repo" repository by username, checkout via ssh
Configuration
Configure your .hgrc to enable the extension by adding following lines:
[extensions] hgbb = /path/to/hgbb.py
Then, configure your bitbucket user name and other options:
[bb] username = birkenfeld default_method = ssh