I am working on a little program that has a repository on GitHub. I have my Visual Studio Code open and I type the following:
git clone https://github.com/EXAMPLE/URL
The URL is not a real one, just an example. It gives me the following error:
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.
At line:1 char:1
+ git clone https://github.com/EXAMPLE/URL
+ ~~~
+ CategoryInfo : ObjectNotFound: (git:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
I have tried to add environment paths on Windows according to another Stack Overflow question but got the same error.