Error installing multiple Hybrid devices

I installed hybrid apps with multiple devices and

when i open javacript cordova project vs2013 will show this message.

Git CLI Software is missing from your system. You can also configure it after installation. Instructions

enter image description here

my path variable

C:\Program Files (x86)\Git\bin; C:\Program Files (x86)\Git\cmd; C:\Program Files (x86)\Git\libexec\git-core 
+6
source share
2 answers

This is a known issue with the release of CTP2. To fix this, in Visual Studio go to:

  • Tools-> Options
  • Scroll down to multiple devices with the hybrid app on the left.
  • Select "Environment Variables" from the list.
  • Mark the variable GIT_HOME
  • Install for this: "C: \ Program Files (x86) \ Git \ bin"

This should solve the problem.

+15
source

After installing VS 2013 Update 5 and then installing Apache Cordova tools, I had the same problem. Priyanka's answer took me in the right direction, although in my case the path to variables

  • Tools -> Options -> Tools for Apache Cordova -> Environment Overrides

Thanks Priyank!

Hope this will be helpful.

+1
source

Source: https://habr.com/ru/post/973538/


All Articles