I'd like to clone multiple remote repositories that all have a similiar naming context. For example, they look this:
foo/stuff
foo/morestuff
foo/evenmorestuff
My question is, can I clone all of these repositories into separate directories on my local machine using something like:
git clone user@server:foo/*
Thanks in advance.