get all repository data like branch and other things
default master
clone specific branch
git clone -b branch-name --single-branch url
recursive 옵션을 주면 포함된 서브모듈까지 함께 Clone
git clone --recursive {원격 Repository 주소}
git clone -b branch-name --single-branch url
git clone --recursive {원격 Repository 주소}