Reputation: 2436
Hello friends i m trying to get clone project in windows but not getting it i use following command
C:\>git clone https://code.google.com/p/quiz-and-poll/
get error message like
'git' is not recognized as an internal or external command,
operable program or batch file.
Any idea how can i get it?
Upvotes: 0
Views: 260
Reputation:
Try running the command using the Git Bash, the most likely cause for this problem is not having Git on your PATH, resulting in not being able to run git
commands in the Windows Command Prompt.
Someone has written some instructions on their website here, they will help you to add Git to your PATH. If you do not wish to add Git to your PATH, simply run the command using the Git Bash.
Upvotes: 1