Project which contains core object for the Task
It helps me to store links to all external git repositories which I am interested in, so I can remove them anytime without worrying that I will lose them.
I created file which contains all repositories and invocation of it.
And now anytime I can just invoke script to download all resources
[String[]]$repos=@(
'git@github.com:tappyy/react-IS4-auth-demo.git',
'git@github.com:fabragaMS/ADPE2E.git')
Clone-GitRepositories -TargetDirectory "d:\Git-External" -Repositories $repos -Verbose




