Fenil Patel
Fenil Patel

Reputation: 1546

I'm not able to start Git in Android Studio 3.0.1

I have imported some of my old project in Android Studio 3.0.1.

Please check out attached screenshot,

enter image description here

And my Version Control > Git setting was look like below,

enter image description here

I also tried to clean and rebuild project but it's seems to be not worked, I got the same err.

I appreciate your help in advance. Thanks

Upvotes: 1

Views: 1255

Answers (2)

Dileep Patel
Dileep Patel

Reputation: 1988

Your git path must be full path like below

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

Note-: For checking git working or not by tap on Test button.

enter image description here

Upvotes: 2

Fenil Patel
Fenil Patel

Reputation: 1546

I found what is the issue.

Run the following command in-terminal,

sudo apt install git

And check git version,

git --version

Retest your git path from Setting > Version Control > Git

Click on the Test button and execute the git path.

Upvotes: 6

Related Questions