2

I want to use my Git server which is on my Raspberry (Raspbian) in order to store and use versioning with my Android projects.

But after many research, I only found solutions with Git on Windows.

When I try to : VCS -> Checkout from Version Control enter image description here Edit : Even if I click on "Test" with a non existing folder, Android Studio studio says "Successful"

And when I try to : VCS -> Import into Version Control enter image description here Edit : Only local...

Could you please tell me if It works only with local Git on Windows or does it exists a way to use Git with my Raspberry?

Thank you in advance for your answers.

Jobel
  • 236
  • 1
  • 3
  • 13
  • What is the issue? Is your ssh URL not working? – VonC Dec 25 '17 at 10:57
  • Even if I click on "Test" with a non existing folder or a wrong path, Android Studio studio says "Successful" ... SSH works with Putty – Jobel Dec 25 '17 at 10:59

1 Answers1

1

As mentioned here, make sure you have generated openssh (not putty) public/private SSH keys in %USERPROFILE%\.ssh (id_rsa/id_rsa.pub)

And by sure your public key is in ~pi/.ssh/authorizeid_keys

Finally, make sure ssh -T pi@my.rasp.pi.address works.

Then you can use your ssh URL:

ssh://pi@my.rasp.pi.address/home/pi/folder
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250