view __init__.py @ 97:f0628f5270b6

add gexport command
author Sverre Rabbelier <sverre@rabbelier.nl>
date Sun, 10 May 2009 06:14:36 -0700
parents bd8fa1a92888
children 209a434734ed
line wrap: on
line source

# 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.

'''

# just importing every damn thing because i don't know python that well
# and I have no idea what I actually need
from mercurial import util, repair, merge, cmdutil, commands, hg, url
from mercurial import extensions, ancestor
from mercurial.commands import templateopts
from mercurial.node import nullrev, nullid, short
from mercurial.i18n import _
import os, errno, sys
import subprocess
import dulwich
from git_handler import GitHandler

# support for `hg clone git://github.com/defunkt/facebox.git`
import gitrepo
hg.schemes['git'] = gitrepo

def gclone(ui, git_url, hg_repo_path=None):
    # determine new repo name
    if not hg_repo_path:
        hg_repo_path = hg.defaultdest(git_url)
        if hg_repo_path.endswith('.git'):
            hg_repo_path = hg_repo_path[:-4]
        hg_repo_path += '-hg'
    dest_repo = hg.repository(ui, hg_repo_path, create=True)

    # fetch the initial git data
    git = GitHandler(dest_repo, ui)
    git.remote_add('origin', git_url)
    git.fetch('origin')
    
    # checkout the tip
    node = git.remote_head('origin')
    hg.update(dest_repo, node)

def gpush(ui, repo, remote_name='origin', branch=None):
    git = GitHandler(repo, ui)
    git.push(remote_name)

def gexport(ui, repo):
    git = GitHandler(repo, ui)
    git.export()

def gremote(ui, repo, *args):
    git = GitHandler(repo, ui)

    if len(args) == 0:
        git.remote_list()
    else:
        verb = args[0]
        nick = args[1]

        if verb == 'add':
            if args[2]:
                git.remote_add(nick, args[2])
            else:
                repo.ui.warn(_("must supply a url to add as a remote\n"))
        elif verb == 'rm':
            git.remote_remove(nick)
        elif verb == 'show':
            git.remote_show(nick)
        else:
            repo.ui.warn(_("unrecognized command to gremote\n"))

def gclear(ui, repo):
    repo.ui.status(_("clearing out the git cache data\n"))
    git = GitHandler(repo, ui)
    git.clear()

def gfetch(ui, repo, remote_name='origin'):
    repo.ui.status(_("pulling from git url\n"))
    git = GitHandler(repo, ui)
    git.fetch(remote_name)

commands.norepo += " gclone"
cmdtable = {
  "gclone":
      (gclone, [],
       _('Clone a git repository into an hg repository.'),
       ),
  "gpush":
        (gpush, [], _('hg gpush remote')),
  "gexport":
        (gexport, [], _('hg gexport')),
  "gfetch":
        (gfetch, [],
        #[('m', 'merge', None, _('merge automatically'))],
        _('hg gfetch remote')),
  "gremote":
      (gremote, [], _('hg gremote add remote (url)')),
  "gclear":
      (gclear, [], _('Clears out the Git cached data')),
}