diff --git a/git-clone-list.ps1 b/git-clone-list.ps1 new file mode 100644 index 0000000..bdd8e89 --- /dev/null +++ b/git-clone-list.ps1 @@ -0,0 +1,6 @@ +# This script clones a list of repos from a text file +# repos.txt should just be a list of .git URLs, separated by a carriage return +$repos = Get-Content "$PSScriptRoot\repos.txt" +foreach ($repo in $repos) { + git clone $repo +} \ No newline at end of file