I need to clone (and later, pull) many repositories all with several set of options. For a lack of a better way, what I'm doing is
git clone <option> <option> <option> <option> ... repository_1 && \
git clone <option> <option> <option> <option> ... repository_2 && \
...
Is there a way to do this in a single command without repeating all the options?
git clone <option> <option> <option> <option> ... repository_1 repository_2 ...