What is the right syntax for running git clone
command on an Azure function powershell 7.0?
Im trying with: git clone <repo https>
and also adding the path at the end git clone <repo https> /.
i get the following error message:
`Command 'starter.cmd git clone https ...' was aborted due to no output nor CPU activity for 60 seconds. You can increase the SCM_COMMAND_IDLE_TIMEOUT app setting (or WEBJOBS_IDLE_TIMEOUT if this is a WebJob) if needed.`
*Update:
Also tried with git clone https://username:password@github.com/username/repository.git
Cloning into ''... fatal: unable to access 'https://github.com//.git/': URL using bad/illegal format or missing URL
I haven't found any documentation on this... is it even possible?