X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fgit-hg-sub-import;h=ecd7757ac0381573e98c79b354e3895190e5de94;hb=a3d197ba5982637e448f1f89201bca4d99e01602;hp=d5d947fb3906d85cc7c60113c5d951ea27201391;hpb=bfb50df5b671e5de95fccd9ceaefe5b15ef04041;p=hvutilities.git diff --git a/scripts/git-hg-sub-import b/scripts/git-hg-sub-import index d5d947f..ecd7757 100755 --- a/scripts/git-hg-sub-import +++ b/scripts/git-hg-sub-import @@ -1,13 +1,11 @@ #!/bin/bash set -o errexit -# Uncomment to have verboswe debug output -#debug=1 - # for use with git-remote-hg: # http://felipec.wordpress.com/2012/11/13/git-remote-hg-bzr-2/ -LSI_SRV=/mnt/server/research/Projects/HG_Repo +# Uncomment to have verbose debug output +#debug=1 print_usage() { @@ -15,6 +13,22 @@ print_usage() echo "Usage: $(basename $0) [OPTIONS...]" } +# git-remote-hg doesn't work with Mercurial subpaths extension, +# so use it manually +hg_subpaths_config() { + subpaths=$(hg showconfig | grep "subpaths") + + if [ -n ${subpaths} ]; then + sp_src=${subpaths//subpaths./} + sp_src=${sp_src//=*/} + sp_src=${sp_src//\\/} # Remove windows separator (LSI) + sp_dst=${subpaths//*=/} + + echo "sp_src = $sp_src" + echo "sp_dst = $sp_dst" + fi +} + # Map a revision to a branch name in HG subrepository # Use hg log (in original repo) to get branch name corresponding to that # revision. @@ -27,7 +41,7 @@ subrepo_find_branch() { local id="${2}" local rev="${3}" - pushd "${LSI_SRV}/${src}" + pushd "${src}" branch=$(hg log -r ${rev} | grep "branch:" | sed "s/branch:\ *//") @@ -53,6 +67,13 @@ if [ ! -f .hgsub ]; then exit 1 fi +if [ ! -f .gitignore ]; then + # We do not want to track .gitignore itself + echo ".gitignore" > .gitignore +fi + +hg_subpaths_config + # Read lines from .hgsub while read sub; do # Remove CR (DOS) @@ -60,13 +81,16 @@ while read sub; do if [ "${sub}" != "" ]; then # Get subrepository URL - src="${sub//*\/HG_REPO/}" + src="${sub//*= /}" + + # Replace using subpaths extension content + src=${src/${sp_src}/${sp_dst}} # Get subrepository local alias or label dest="${sub// =*}" # Get project ID (example: S0289) - id=$(echo ${sub} | sed "s/.*HG_REPO\(S[0-9][0-9][0-9][0-9]\).*/\1/") + id=$(echo ${sub} | sed "s/.*\(S[0-9][0-9][0-9][0-9]\).*/\1/") # Get revision of subrepository (remove CR from .hgsubstate) rev=$(cat .hgsubstate | tr -d '\r' | grep "${id}" | sed "s/ .*//") @@ -75,6 +99,7 @@ while read sub; do echo "repo: ${src}" echo " id: ${id}" echo " rev: ${rev}" + echo " src: ${src}" echo " dest: ${dest}" fi @@ -87,13 +112,23 @@ while read sub; do # "BRANCH___-___NAME" branch="${branch// /___}" - git clone "hg::${LSI_SRV}/${src}" "${dest}" + git clone "hg::${src}" "${dest}" if [ "x${branch}" != "xdefault" ]; then cd "${dest}" git checkout "branches/${branch}" + + # This does not work: the SHA from hg and git + # are not the same... + #git reset --hard ${rev} + cd .. fi + + if ! grep -q "${dest}" .gitignore ; then + # Ignore subrepo in top-level git repository + echo "${dest}" >> .gitignore + fi else pushd "${dest}" git pull