I'm trying to clone a Github repo.
Function CloneRepo{
$solnFolder = -join($outputDir,"\", $newSolutionName)
git clone -b master "https://github.com/sukesh-y/Stratum.git" $solnFolder
}
$newSolutionName = "MyCompany"
$outputDir = "D:\Test"
CloneRepo
This does clone the repo but there is an error in console.
When I execute the script, it throws the error. After many seconds, it shows the Uploading files
progress.
I'm running Windows PowerShell ISE with Admin privileges. What is this error and how can I avoid it.