sapling/__init__.py
2009-07-23 08:38:20 +01:00

68 lines
1.7 KiB
Python

# git.py - git server bridge
#
# Copyright 2008 Scott Chacon <schacon at gmail dot com>
# also some code (and help) borrowed from durin42
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
'''push and pull from a Git server
This extension lets you communicate (push and pull) with a Git server.
This way you can use Git hosting for your project or collaborate with a
project that is in Git. A bridger of worlds, this plugin be.
'''
from mercurial import commands, extensions, hg, util
from mercurial.i18n import _
from dulwich.repo import Repo
from dulwich.errors import NotGitRepository
import gitrepo, hgrepo
from git_handler import GitHandler
# support for `hg clone git://github.com/defunkt/facebox.git`
# also hg clone git+ssh://git@github.com/schacon/simplegit.git
hg.schemes['git'] = gitrepo
hg.schemes['git+ssh'] = gitrepo
_oldlocal = hg.schemes['file']
def _local(path):
p = util.drop_scheme('file', path)
try:
Repo(p)
return gitrepo
except NotGitRepository:
return _oldlocal(path)
hg.schemes['file'] = _local
def reposetup(ui, repo):
klass = hgrepo.generate_repo_subclass(repo.__class__)
repo.__class__ = klass
def gimport(ui, repo, remote_name=None):
git = GitHandler(repo, ui)
git.import_commits(remote_name)
def gexport(ui, repo):
git = GitHandler(repo, ui)
git.export_commits()
def gclear(ui, repo):
repo.ui.status(_("clearing out the git cache data\n"))
git = GitHandler(repo, ui)
git.clear()
cmdtable = {
"gimport":
(gimport, [], _('hg gimport')),
"gexport":
(gexport, [], _('hg gexport')),
"gclear":
(gclear, [], _('Clears out the Git cached data')),
}