Tagged Questions

hg-git is a tool for communicating changes between hg and git. If you want to use hg to communicate with GitHub, then this is the tool for you.

learn more… | top users | synonyms

23
votes
6answers
3k views

How do I correctly install dulwich to get hg-git working on Windows?

I'm trying to use the hg-git Mercurial extension on Windows (Windows 7 64-bit, to be specific). I have Mercurial and Git installed. I have Python 2.5 (32-bit) installed. I followed the instructions ...
16
votes
3answers
1k views

How do I relate an existing Mercurial and git repositories using hg-git?

This is a pretty esoteric question, so just to make clear here from the start: I am not talking about converting from svn to git, git to mercurial, or mercurial to git. I am talking about a complex ...
9
votes
4answers
844 views

Adding a Git subrepository to Mercurial

I've been trying to set up a project using bitbucket which has project dependencies hosted on github. Using the Hg-Git Mercurial plugin I am able to almost get there. But when it comes time to push, ...
5
votes
2answers
679 views

Installing Hg-Git on Windows 7 64bit

I am trying for a while installing Hg-Git addon to my Windows 7 Operating system I have crossed several difficulties like installing Python and other utilities described in this blog. I had even ...
4
votes
1answer
119 views

hg-git push silently fails

I'm trying to use hg push to a git repository, but it silently fails. I found a single post on the mailing list and a registered hg-git issue, but both are about half a year old without much ...
4
votes
2answers
177 views

using git but pushing to mercurial?

I have a new job however they use mercurial as their version control and most of my experience is with git. I try to learn mercurial but the way it does branching (even with extensions like ...
3
votes
2answers
178 views

HgGit: “invalid-email-address” at GitHub

I started to use HgGit extension for mercurial to have copy of repository at GitHub. Almost everything is working well, but in commits information at GitHub I see invalid-email-address (author) ...
3
votes
2answers
345 views

Cloning git repository from http URL with tortoisehg

I have TortoiseHg with the hg-git extension installed. I know it is working as I can clone repositories from github using hg clone git://github.com/foo/bar.git However, I am trying to clone a ...
3
votes
1answer
642 views

Hg-Git: How to push to both Github and Bitbucket?

I just installed Hg-Git and I was wondering if it is possible to push to both Bitbucket.org and Github.com from the same repository. I'm thinking of something like: $ #make commits $ hg push #pushes ...
2
votes
2answers
396 views

Cloning github repo with hggit

I am trying to clone some github repos locally with hggit. I am following tutorial instructions to do $ hg clone git://github.com/schacon/hg-git.git abort: repository ...
2
votes
1answer
537 views

Mercurial Hg-Git: Clone from a local directory?

I have a local Git repository on my computer that I am trying to clone with Hg-Git. It works fine for me when I'm cloning from a git:// type path, but if I try to clone from two local directories. ...
2
votes
1answer
735 views

Mercurial error *** failed to import extension hggit: No module named hggit

I installed Mercurial on my Mac, and it's wonderful. For me it's easier to grasp than Git so I wanted to use it to manage git-repositories. Therefore I installed hg-git with the following ...
2
votes
1answer
83 views

No changes are pushed when using hg-git

I'm trying to get the hg-git extension working under Windows and after hours of fiddling, I finally seem to have it working. However, nothing shows up in my git repository even though the output of hg ...
2
votes
1answer
306 views

hg clone git:… aborts: failing connection?

When trying to clone a git repository using Mercurial over hg-git: hg clone git://github.com/rails/rails.git destination directory: rails importing Hg objects into Git abort: A connection attempt ...
2
votes
1answer
181 views

I moved my source directory and can no longer push to Heroku

I've been happily using heroku to beta test a Rails app, and recently hit a snag. I prefer Mercurial to git and have been using hg-git to push my app to Heroku. This was working fine until I branched ...
1
vote
2answers
41 views

How to import a Bitbucket project into Github on Windows

I have a HG project hosted on Bitbucket, and I want to move it to Github. I have followed the guideline here to install hg-git extension, on my TortoiseHG. I have created a repo on Github, but has ...
1
vote
1answer
120 views

Hg-Git and the Current Version (2) of Mercurial? [closed]

Any compatibility or stability issues with using Hg-Git with version 2 of Mercurial? I am tempted to use Hg-Git to allow me to use Hg but use Github as my repository. Most web chatter about both seems ...
1
vote
1answer
167 views

How can I work in my repo using Git, and push to a Mercurial repo?

I installed hg-git, and I clone my github repository using it: $ hg clone git+ssh://git@github.com/my/repo.git $ git status fatal: This operation must be run in a work tree $ hg gexport ( now the ...
1
vote
2answers
93 views

Problem with loading hggit extension in TortoiseHG

I'm trying to get the hggit extension to work under Windows 7 (64bit) using TortoiseHG (2.1.2). I followed the official setup instructions, i.e. cloning the hg-git repository and adding the "hggit = ...
1
vote
1answer
382 views

Commiting Mercurial (Hg) branch to GitHub

I have a little project project called MvcOpenId. I host the source for this on both Codeplex and GitHub. Localy I'm using Mercurial (Hg)for versioning and then with the hg-git plugin I'm pushing to ...
0
votes
2answers
15 views

hg-git deploy to heroku from Lion

I have this application on my Lion machine that is in a mercurial repository so I'm using hg-git to deploy it to heroku. ~/.hgrc [extensions] hgext.bookmarks = hggit = .../project/.hg/hgrc ...
0
votes
0answers
62 views

convert git repo to mercurial repo

i was working on a git repository and now i need to convert it to a hg repository for some reason. my original git repository has 41 commits and had a size of 320MB. i am trying to convert the ...
0
votes
0answers
28 views

How do I have hg-git only import my master branch into mercurial while ignoring topic branches I'm working on

I am using hg-git, and I have noticed that gimport seems to pick up my most recent commit rather than the latest commit on master. This is annoying when I have work on a topic branch that I intend to ...