Setting up bzr to send commit emails

You are viewing an old version of this article. View the current version here.

Commit emails for MariaDB are sent to commits@mariab.org. You can find the archive here.

To allow others to see what you are working on in your MariaDB tree, you should:

  1. subscribe to the email list
  2. configure bzr to send your commits to commits@mariab.org.

First add your email address to your /.bazaar/bazaar.conf file:

[DEFAULT]
email = 'Your name <name@location.com>'

Then you have to tell bzr for which trees to send commit emails. This is done by adding something like the following to your /.bazaar/locations.conf file:

[/home/my/maria-5.1]
post_commit_to=commits@mariadb.org
post_commit_url=lp:maria/5.1

[/home/my/maria-5.2]
post_commit_to=commits@mariadb.org
post_commit_url=lp:maria/5.2

[/home/my/maria-5.3]
post_commit_to=commits@mariadb.org
post_commit_url=lp:maria/5.3

Just replace '/home/my' with the full path to the root of your .bzr trees.

You should also install the bzr-email plugin to get nicer looking commit emails.

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.