git clone specific sha code example
Example 1: git pull a specific sha
git fetch origin
git merge YOUR_SHA_HERE
Example 2: git clone specific version
#For cloning a specific version of a repo branch find the SHA1 ID and use
#following commands instruction
git clone $URL
cd $PROJECT_NAME
git reset --hard $SHA1
git pull