branch=default
fi
+ num=$(hg log --branch "${branch}" --template '{node}\n' | \
+ grep -n ${rev} | awk -F ':' '{print $1}')
+
if [ -n "${debug}" ]; then
echo " branch: ${branch}"
+ echo " num: ${num}"
fi
popd
cd "${dest}"
git checkout "branches/${branch}"
- # This does not work: the SHA from hg and git
- # are not the same...
- #git reset --hard ${rev}
+ # Adjusting git tree to specific commit specified in
+ # .hgsubstate:
+ # The SHA from hg and git are not the same, therefore, we must
+ # find the commit sequence in hg and map this
+ # to a hash in git using the ${num} variable:
+ git_rev=$(git log --oneline | sed -n "${num}p" | awk '{print $1}')
+ git reset --hard ${git_rev}
cd ..
fi