Как часть этой автоматизации, которую я делаю, я обязан клонировать репо, поскольку в нем есть файл json, который мне нужно будет использовать для автоматизации. Я импортировал posh-git
, но не могу запустить git clone <url>
в нем. Вот ошибка: git : The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Очевидно, я добавил свою учетную запись в Source Control. Итак, я сделал $SourceControl = Get-AzureRmAutomationSourceControl -AutomationAccountName $AutomationAccountName -Name testRepo -ResourceGroupName $ResourceGroupName
И затем я делаю git clone $SourceControl.RepoUrl
И это не удается с указанной ошибкой.
Любая помощь очень ценится.