summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorIan Clatworthy <ian.clatworthy@canonical.com>2009-08-17 16:06:47 +1000
committerIan Clatworthy <ian.clatworthy@canonical.com>2009-08-17 16:06:47 +1000
commit5a7529def5bbc5f0217caa8d00d1a2a0609b2f23 (patch)
tree0388721eebcbc58a8b13f6c96c36c5ee88b8d160 /__init__.py
parent245149d9df71d7b5dab6a1b25a0d208c9584a913 (diff)
downloadbzr-fastimport-5a7529def5bbc5f0217caa8d00d1a2a0609b2f23.tar.gz
Update the working tree for trunk implicitly
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/__init__.py b/__init__.py
index dc09748..d698519 100644
--- a/__init__.py
+++ b/__init__.py
@@ -160,6 +160,12 @@ class cmd_fast_import(Command):
that branch is made the trunk and other branches, if any, are
created in sister directories.
+ :Working tree updates:
+
+ The working tree is generated for the trunk branch. If multiple
+ branches are created, a message is output on completion explaining
+ how to create the working trees for other branches.
+
:Custom exporters:
The fast-export-from-xxx commands typically call more advanced
@@ -205,27 +211,27 @@ class cmd_fast_import(Command):
Import a Subversion repository into Bazaar::
bzr fast-export-from-svn /svn/repo/path project.fi
- bzr fast-import project.fi
+ bzr fast-import project.fi project.bzr
Import a CVS repository into Bazaar::
bzr fast-export-from-cvs /cvs/repo/path project.fi
- bzr fast-import project.fi
+ bzr fast-import project.fi project.bzr
Import a Git repository into Bazaar::
bzr fast-export-from-git /git/repo/path project.fi
- bzr fast-import project.fi
+ bzr fast-import project.fi project.bzr
Import a Mercurial repository into Bazaar::
bzr fast-export-from-hg /hg/repo/path project.fi
- bzr fast-import project.fi
+ bzr fast-import project.fi project.bzr
Import a Darcs repository into Bazaar::
bzr fast-export-from-darcs /darcs/repo/path project.fi
- bzr fast-import project.fi
+ bzr fast-import project.fi project.bzr
"""
hidden = False
_see_also = ['fast-export', 'fast-import-filter', 'fast-import-info']
@@ -235,7 +241,7 @@ class cmd_fast_import(Command):
help="Path to file containing caching hints.",
),
Option('trees',
- help="Update working trees.",
+ help="Update all working trees, not just trunk's.",
),
Option('count', type=int,
help="Import this many revisions then exit.",