Hi, How should I **clone** **only one single branch** just like `git clone --single-branch --branch branch_name`? Is this possible to **clone** only a **specific number of commits**? I mean a **shallow clone** instead of all commits like the way `git clone --depth 1 acts`.
Hi,
How should I clone only one single branch just like
git clone --single-branch --branch branch_name?Is this possible to clone only a specific number of commits? I mean a shallow clone instead of all commits like the way
git clone --depth 1 acts.