error: git was not found - installing laravel with composer windows

后端 未结 5 1628
时光说笑
时光说笑 2021-01-12 10:20

I\'m getting an error saying:

failed to clone https://github.com/php-fig/log.git, git was not found, check that it is installed and in your PATH env.

\'git\         


        
相关标签:
5条回答
  • 2021-01-12 10:25

    You need to add the directory you installed git to to your PATH environment variable.

    1. Right click on Computer.
    2. Click Advanced System Settings
    3. Click Environment Variables inside the Advanced Menu
    4. Under System Variables, scroll to PATH
    5. Add ;"C:\path\to\git\bin";"C:\path\to\git\cmd"

    Test the git command in the command prompt to see if it worked. Git is usually located in Program Files or Program Files(x86).

    0 讨论(0)
  • 2021-01-12 10:28

    You'll need to add git to your system PATH if you want to use it in regular command prompt.

    Here's a guide on modifying your system path in Windows:

    http://www.computerhope.com/issues/ch000549.htm

    0 讨论(0)
  • 2021-01-12 10:29

    you need to uninstall git and reinstall ( or update ) in the options you need to change from git bash only to allow git to be added to command line as well, also since it then adds it to your path you may or may not need to restart your computer

    0 讨论(0)
  • 2021-01-12 10:40

    There is an easier (but temporal) way to add a path variable in Windows.

    Paste this in your command prompt:

    SET PATH=%PATH%;C:\Program Files\Git\bin
    

    This will work for the rest of the command prompt session. Don't forget installing Git before this.

    0 讨论(0)
  • 2021-01-12 10:44

    I was having some issues using git on Windows. I found this information only and it worked for me.

    http://ccn.ucla.edu/wiki/index.php/Setting_Up_and_Using_Git#Windows

    0 讨论(0)
提交回复
热议问题