~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to push.py

  • Committer: Aaron Bentley
  • Date: 2005-10-19 18:12:14 UTC
  • Revision ID: abentley@panoramicfeedback.com-20051019181214-7cc244b0639f705f
Changed overwrite description

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import bzrtools 
22
22
 
23
23
Option.OPTIONS['overwrite'] = Option('overwrite', help='Ignore safety checks'
24
 
                                     'and overwrite any existing data.')
 
24
                                     ' and overwrite any existing data.')
25
25
 
26
26
class cmd_push(Command):
27
27
    """Upload this branch to another location using rsync.
28
28
 
29
 
    If no location is specified, the last-used location will be used.  To
30
 
    to prevent dirty trees from being uploaded, push will error out if there
31
 
    are unknown files or local changes.  It will also error out if the
32
 
    upstream directory is non-empty and not an earlier version of the
33
 
    branch.
 
29
    If no location is specified, the last-used location will be used.  To 
 
30
    prevent dirty trees from being uploaded, push will error out if there are 
 
31
    unknown files or local changes.  It will also error out if the upstream 
 
32
    directory is non-empty and not an earlier version of the branch. 
34
33
    """
35
34
    takes_args = ['location?']
36
35
    takes_options = ['overwrite']