1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
|
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
|
-
+
|
<verbatim>
sh ~/Downloads/hg-fast-export.sh
</verbatim>
Once it finishes, check if it correctly imported everything by running "git log".
If you got "ImportError: No module named mercurial" make sure your PYTHONPATH variable is set to point to the location
where mercurial modules are installed (on Mac OS X when Mercurial was installed via "easy_install mercurial", enter the
where mercurial modules are installed (on Mac OS X when Mercurial was installed via "sudo easy_install mercurial", enter the
following into bash: "export PYTHONPATH=/Library/Python/2.6/site-packages").
Now we can import Git repository into Fossil (we'll put it into
parent directory under the "our-repository.fossil" name):
<verbatim>
git fast-export --all | fossil import --git ../our-repository.fossil
|