According to this answer https://stackoverflow.com/a/13354944/867294 it should be fairly easy to set up git to work with mercurial "no dependencies or anything".
This doesn't seem to work all that smooth on Windows tough.
I tried to follow this guide
https://github.com/msysgit/msysgit/wiki/Guide-to-git-remote-hg
After fixing the makeFile to work on my system and building git i couldn't call git-remote-hg because it complained it couldn't find the python interpreter, all tough it's configured correctly. So i manually called it with
C:/Python27/python.exe git-remote-hg clone C:/TestMercurialRepo
This is now giving me the following error.
Traceback (most recent call last):
File "git-remote-hg", line 99, in <module>
sys.exit(HgRemoteHelper().main(sys.argv))
File "d:\development\msysgit\git\git_remote_helpers\helper.py", line 196, in m
ain
repo = self.get_repo(alias, url)
File "git-remote-hg", line 33, in get_repo
if repo.capable('branchmap'):
File "c:\Python27\lib\site-packages\mercurial\repoview.py", line 205, in __get
attr__
return getattr(self._unfilteredrepo, attr)
AttributeError: 'mqrepo' object has no attribute 'capable'
How can i fix this ?
If there is a pre build version anywhere then that would be super awesome because i feel like i'm doing way to much to get this to work.