sapling/__init__.py

80 lines
2.6 KiB
Python
Raw Normal View History

'''integration with Subversion repositories
This extension allows Mercurial to act as a Subversion client, for
fast incremental, bidirectional updates.
It is *not* ready yet for production use. You should only be using
this if you're ready to hack on it, and go diving into the internals
of Mercurial and/or Subversion.
Before using hgsubversion, it is *strongly* encouraged to run the
automated tests. See `README' in the hgsubversion directory for
details.
'''
import os
from mercurial import commands
from mercurial import hg
import svncommand
import fetch_command
import tag_repo
import util
def reposetup(ui, repo):
if not util.is_svn_repo(repo):
return
repo.__class__ = tag_repo.generate_repo_class(ui, repo)
def svn(ui, repo, subcommand, *args, **opts):
'''see detailed help for list of subcommands'''
return svncommand.svncmd(ui, repo, subcommand, *args, **opts)
def svn_fetch(ui, svn_url, hg_repo_path=None, **opts):
'''clone Subversion repository to a local Mercurial repository.
2008-12-14 18:31:26 +03:00
If no destination directory name is specified, it defaults to the
basename of the source plus "-hg".
2008-12-16 06:36:14 +03:00
You can specify multiple paths for the location of tags using comma
separated values.
2008-12-14 18:31:26 +03:00
'''
if not hg_repo_path:
hg_repo_path = hg.defaultdest(svn_url) + "-hg"
ui.status("Assuming destination %s\n" % hg_repo_path)
should_update = not os.path.exists(hg_repo_path)
svn_url = util.normalize_url(svn_url)
res = fetch_command.fetch_revisions(ui, svn_url, hg_repo_path, **opts)
if (res is None or res == 0) and should_update:
repo = hg.repository(ui, hg_repo_path)
commands.update(ui, repo, repo['tip'].node())
return res
commands.norepo += " svnclone"
cmdtable = {
"svn":
(svn,
[('u', 'svn-url', '', 'path to the Subversion server.'),
('', 'stupid', False, 'be stupid and use diffy replay.'),
('A', 'authors', '', 'username mapping filename'),
('', 'filemap', '',
'remap file to exclude paths or include only certain paths'),
],
svncommand.generate_help(),
),
2008-12-14 18:31:26 +03:00
"svnclone":
(svn_fetch,
[('S', 'skipto-rev', '0', 'skip commits before this revision.'),
('', 'stupid', False, 'be stupid and use diffy replay.'),
('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'),
('A', 'authors', '', 'username mapping filename'),
('', 'filemap', '',
'remap file to exclude paths or include only certain paths'),
],
2008-12-14 18:31:26 +03:00
'hg svnclone source [dest]'),
}