I need help when cloning my github repo with its submodules.
I am currently using this generic command :
git clone --recursive ${GIT_SOURCE} -b master ${MY_DIR}
and it works fine.
However, I was wondering if cloning my master
branch by HASH will include the submodules "snapshot" (i.e. their own commits corresponding to that particular master
commit) or their updated ones if i ever make one "on the road".
Is it possible to achieve this kind of result?