⇤ ← Revision 1 as of 2010-08-28 10:37:09
Size: 1239
Comment:
|
Size: 1978
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 13: | Line 13: |
Implemented URL schemas, usable instead of `http://bitbucket.org/...`: | ==== Implemented URL schemas ==== Usable instead of `http://bitbucket.org/...`: |
Line 27: | Line 30: |
==== Implemented commands ==== `hg bbforks` This command shows the list of registered forks of your repository on bitbucket. With the `-i` option, it checks each fork for incoming changesets. With the `-if` options, it also prints each incoming changeset shortly. For example: {{{ sphinx$ hg bbforks -if using 'birkenfeld/sphinx' as repo name getting descendants list looking at bboissin/tonfa-sphinx looking at yarko/sphinxdevel 11 incoming changesets found in bb+http:yarko/sphinxdevel 2904:4fbf67ecbaa9 2008-11-06 cyt007: image paths with *; latex title espaces; 2905:fa423b494885 2008-11-06 cyt007: updates from Georg 2906:a4622d835db3 2008-11-06 cyt007: reverting as per Georg ... }}} |
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
Implemented commands
hg bbforks
This command shows the list of registered forks of your repository on bitbucket.
With the -i option, it checks each fork for incoming changesets.
With the -if options, it also prints each incoming changeset shortly.
For example:
sphinx$ hg bbforks -if using 'birkenfeld/sphinx' as repo name getting descendants list looking at bboissin/tonfa-sphinx looking at yarko/sphinxdevel 11 incoming changesets found in bb+http:yarko/sphinxdevel 2904:4fbf67ecbaa9 2008-11-06 cyt007: image paths with *; latex title espaces; 2905:fa423b494885 2008-11-06 cyt007: updates from Georg 2906:a4622d835db3 2008-11-06 cyt007: reverting as per Georg ...
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