~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-05-30 03:22:46 UTC
  • Revision ID: mbp@sourcefrog.net-20050530032246-ba69e3b1a7a968d1
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
339
339
        This puts the files in the Added state, so that they will be
340
340
        recorded by the next commit.
341
341
 
 
342
        files
 
343
            List of paths to add, relative to the base of the tree.
 
344
 
 
345
        ids
 
346
            If set, use these instead of automatically generated ids.
 
347
            Must be the same length as the list of files, but may
 
348
            contain None for ids that are to be autogenerated.
 
349
 
342
350
        TODO: Perhaps have an option to add the ids even if the files do
343
 
               not (yet) exist.
 
351
              not (yet) exist.
344
352
 
345
353
        TODO: Perhaps return the ids of the files?  But then again it
346
 
               is easy to retrieve them if they're needed.
347
 
 
348
 
        TODO: Option to specify file id.
 
354
              is easy to retrieve them if they're needed.
349
355
 
350
356
        TODO: Adding a directory should optionally recurse down and
351
 
               add all non-ignored children.  Perhaps do that in a
352
 
               higher-level method.
 
357
              add all non-ignored children.  Perhaps do that in a
 
358
              higher-level method.
353
359
        """
354
360
        # TODO: Re-adding a file that is removed in the working copy
355
361
        # should probably put it back with the previous ID.