hg-git

Installing Hg-Git on Windows 7 64bit

岁酱吖の 提交于 2019-12-03 01:52:03
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 after this manual problems and could not install this addon because of errors described in this log . I searched google and I have found this manual Now i have these errors showed in this log . Any help with these errors? Thank you for your help. Stephen Swensen In case it helps anyone, I have Windows 7 64bit and TortoiseHg and following their instructions was easy and worked without issue.

Adding a Git subrepository to Mercurial

偶尔善良 提交于 2019-12-03 01:46:44
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, things become troublesome. The documentation for Mercurial subrepositories states: 2.4 Push Mercurial will automatically attempt to first push all subrepos of the current repository when you push. This will ensure new changesets in subrepos are available when referenced by top-level repositories. But this causes a big issue since I don't want to push all the subrepositories (why would I?) — I only

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

半腔热情 提交于 2019-12-02 16:57:28
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 on http://hg-git.github.com/ to install the extension. The initial easy_install failed because it was unable to compile dulwich without Visual Studio 2003. I installed dulwich manually by: git clone git://git.samba.org/jelmer/dulwich.git cd dulwich c:\Python25\python setup.py --pure install Now when I run easy_install hg-git, it succeeds (since the dulwich dependency is satisfied). In my C:\Users

No changes are pushed when using hg-git

£可爱£侵袭症+ 提交于 2019-11-28 21:24:59
问题 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 push reads: importing Hg objects into Git creating and sending data github::refs/heads/master => GIT:8d946209 [command completed successfully Wed Oct 20 15:26:47 2010] 回答1: Try issuing the command hg bookmark -f master (use -f to force an existing bookmark to move) Then try pushing again. This