Is it possible to git clone
multiple git repositories with one command (for example: git clone "1.git,2.git,3.git.."
in one local directory?
This is how almost solved for myself:
git clone https://myrepo.com/folder.git && \
git clone https://myrepo.com/folder2.git && \
git clone https://myrepo.com/folder3.git
This is way easier to build using a code editor like Sublime or VSCode.
The only downside for me: If you did not store your credentials, you're gonna have to type it over and over.