veinhorn
veinhorn

Reputation: 2403

Don't work git in Android Studio

Before reinstalling Android Studio git worked well. But after reinstalling it asks to write the "Path to Git executable". May be some know where is situated git.exe file in the Android Studio folder? I wouldn't like to install any separate version control systems. Thank you for any help.

enter image description here

Upvotes: 2

Views: 867

Answers (1)

ANemati
ANemati

Reputation: 4804

you need to install git on your computer first. in my case on Ubuntu I installed it with:

sudo apt-get install git-core

in terminal and followed by :

git config --global user.name "NewUser"

git config --global user.email [email protected]

for configurations. That's it and now it works perfectly.

Upvotes: 1

Related Questions