how to clone one branch to another branch in git code example
Example 1: clone a particular branch
git clone -b <branch> <remote_repo>
Example 2: git clone single branch
# clone only the remote primary HEAD (default: origin/master)
git clone <url> --single-branch
# as in:
git clone <url> --branch <branch> --single-branch [<folder>]