/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/hooks.txt

  • Committer: Andrew Bennetts
  • Date: 2008-11-27 06:29:56 UTC
  • mfrom: (3861 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3863.
  • Revision ID: andrew.bennetts@canonical.com-20081127062956-v0a19icwk85iosx4
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
Runs on the client.
262
262
 
263
263
(New in 1.8.)
 
264
 
 
265
commit_message_template (msgeditor)
 
266
-----------------------------------
 
267
 
 
268
Invoked by commit to generate a commit message template.
 
269
Each hook can modify the commit message template.
 
270
The hook signature is (commit, start_message), where:
 
271
 
 
272
  commit
 
273
    A commit object, for the commit in progress
 
274
 
 
275
  start_message
 
276
    The original commit message, None initially.
 
277
 
 
278
The hook should return a new commit message template.
 
279
 
 
280
(New in 1.10.)