~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-26 03:02:29 UTC
  • Revision ID: mbp@sourcefrog.net-20050326030229-4ee2b6cf67fd9a39
- more commit help

Show diffs side-by-side

added added

removed removed

Lines of Context:
413
413
 
414
414
 
415
415
def cmd_commit(message=None, verbose=False):
 
416
    """Commit changes to a new revision.
 
417
 
 
418
--message MESSAGE
 
419
    Description of changes in this revision; free form text.
 
420
    It is recommended that the first line be a single-sentence
 
421
    summary.
 
422
--verbose
 
423
    Show status of changed files,
 
424
 
 
425
TODO: Commit only selected files.
 
426
 
 
427
TODO: Run hooks on tree to-be-committed, and after commit.
 
428
 
 
429
TODO: Strict commit that fails if there are unknown or deleted files.
 
430
"""
 
431
 
416
432
    if not message:
417
433
        bailout("please specify a commit message")
418
434
    Branch('.').commit(message, verbose=verbose)