Problem with Git CLI on ionic

-1

I'm trying to make the tutorial application available on the ionic website link but I always encounter problems when choosing the temple, I installed Git in the link indicated but nothing was solved.

    
asked by anonymous 30.09.2017 / 22:34

1 answer

0

The message says that the GIT CLI is not in your PATH . So, you need to add Git in PATH . Here's how to do it:

  • Right click on "My Computer" and press "Properties"
  • Click "Advanced System Settings"
  • Click "Environment Variables"
  • Next, edit the PATH variable by adding the GIT path, both .exe , and CMD . Here is the default path you should add:

    ;C:\Program Files\Git\bin\git.exe;C:\Program Files\Git\cmd 
    

    You can also do this from the command line. See here in this question about How to change the PATH in Windows .

    It is important to check if the version of Git is 32 bits or 64 bits, because depending on the version, it changes the path in the operating system, which should also be checked.

        
    30.09.2017 / 22:55