I've got a large repo that takes a while to clone, and I want my CI box to go faster. HowHow do I shallow clone a repogit repository, so that my clone contains only 1 history item, and starts on a specific branch?
I know how to do a shallow clone:
git clone --depth 1 https://path/to/myrepo.git
but not start the clone on a specific branch.