Mercurial supports not only submodules which are Mercurial repositories, but also Git and Subversion repositories. This patch adds support for submodules which are Git repositories to hg-fast-export. As submodules which are Git repositories won't need a mapping file we trigger the submodule update only on the occurence of the `.hgsubstate` file and push the check for a valid `submodule_mappings` to `refresh_gitmodules(ctx)`
2.3 KiB
How to convert Mercurial Repositories with subrepos
Introduction
hg-fast-export supports migrating mercurial subrepositories in the repository being converted into git submodules in the converted repository.
Git submodules must be git repositories while mercurial's subrepositories can be git, mercurial or subversion repositories. hg-fast-export will handle any git subrepositories automatically, any other kinds must first be converted to git repositories. Currently hg-fast-export does not support the conversion of subversion subrepositories. The rest of this page covers the conversion of mercurial subrepositories which require some manual steps:
The first step for mercurial subrepositories involves converting the subrepository into a git repository using hg-fast-export. When all subrepositories have been converted, a mapping file that maps the mercurial subrepository path to a converted git submodule path must be created. The format for this file is:
""="" ""="" ...
The path of this mapping file is then provided with the --subrepo-map command line option.
Example
Example mercurial repo folder structure (~/mercurial): src/... subrepo/subrepo1 subrepo/subrepo2
Setup
Create an empty new folder where all the converted git modules will be imported: mkdir ~/imported-gits cd ~/imported-gits
Convert all submodules to git:
mkdir submodule1
cd submodule1
git init
hg-fast-export.sh -r ~/mercurial/subrepo1
cd ..
mkdir submodule2
cd submodule2
git init
hg-fast-export.sh -r ~/mercurial/subrepo2
Create mapping file
cd ~/imported-gits
cat > submodule-mappings << EOF
"subrepo/subrepo1"="../submodule1"
"subrepo/subrepo2"="../submodule2"
EOF
Convert main repository
cd ~/imported-gits
mkdir git-main-repo
cd git-main-repo
git init
hg-fast-export.sh -r ~/mercurial --subrepo-map=../submodule-mappings
Result
The resulting repository will now contain the subrepo/subrepo1 and subrepo/subrepo1 submodules. The created .gitmodules file will look like:
[submodule "subrepo/subrepo1"]
path = subrepo/subrepo1
url = ../submodule1
[submodule "subrepo/subrepo2"]
path = subrepo/subrepo2
url = ../submodule2