~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
 
267
267
    Adding a file whose parent directory is not versioned will
268
268
    implicitly add the parent, and so on up to the root. This means
269
 
    you should never need to explictly add a directory, they'll just
 
269
    you should never need to explicitly add a directory, they'll just
270
270
    get added when you add a file in the directory.
271
271
 
272
272
    --dry-run will show which files would be added, but not actually 
280
280
        import bzrlib.add
281
281
 
282
282
        action = bzrlib.add.AddAction(to_file=self.outf,
283
 
            should_add=(not dry_run), should_print=(not is_quiet()))
 
283
            should_print=(not is_quiet()))
284
284
 
285
285
        added, ignored = bzrlib.add.smart_add(file_list, not no_recurse, 
286
 
                                              action=action)
 
286
                                              action=action, save=not dry_run)
287
287
        if len(ignored) > 0:
288
288
            if verbose:
289
289
                for glob in sorted(ignored.keys()):
2559
2559
    """
2560
2560
 
2561
2561
    # TODO: jam 20060108 Add an option to allow uncommit to remove
2562
 
    # unreferenced information in 'branch-as-repostory' branches.
 
2562
    # unreferenced information in 'branch-as-repository' branches.
2563
2563
    # TODO: jam 20060108 Add the ability for uncommit to remove unreferenced
2564
2564
    # information in shared branches as well.
2565
2565
    takes_options = ['verbose', 'revision',