Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I configure the path to the Git executable in Android Studio?

Tags:

How do I configure the path to the Git executable in Android Studio?

I am working in Linux.

Enter image description here

like image 933
Dennis MP Avatar asked Aug 21 '14 13:08

Dennis MP


People also ask

What is git executable path?

The default path on windows is C:\Program Files (x86)\Git . The name of the executable is not git.exe on all systems.

Do we need to set path for git?

Git executable files are located in the C:\Program Files\Git\bin\git.exe and C:\Program Files\Git\cmd . These directories must be added to the PATH environment variable to run the program.

Where is git executable Linux?

Git executable can be found by using running git --exec-path, which usually lives in the Git execution path. git --exec-path will give you the path.


Video Answer


1 Answers

Paste this in a terminal:

whereis git 

or if you get 'command not found' you can try

where git 

You get the path to your Git executable.

like image 198
buxik Avatar answered Oct 26 '22 02:10

buxik