0

I referred this link: Connecting to GitLab repositories on Android Studio

In step 1, I am getting this

https://gitlab.com/pvijayalakshmi/eemployee.git

URL starts with http

In step3, I am getting this error:

Remote URL test failed: Unable to find remote helper for 'https'

enter image description here

enter image description here Why I am getting this error?

Please help me.

Any help would be appreciated.

vishnu
  • 337
  • 4
  • 14

2 Answers2

1

You can follow a tutorial from Github, the principle is the same: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/ Basically, you need to add git to your local project, commit all the changes and set up remote repository URL:

git remote add origin remote repository URL

Then you push your code to the remote repository.

Angelina
  • 1,473
  • 2
  • 16
  • 34
  • I dont want to integrate with GITHUB. I want to integrate with GITLAB@Angelina – vishnu Sep 14 '18 at 12:51
  • @vishnu the command line commands are exactly the same. just use your gitlab url in setting remote url. see here: https://usersnap.com/blog/gitlab-github/ they both use a program called `git` – Angelina Sep 14 '18 at 13:00
0
  1. You can create a project to Gitlab manually, Get project repo URL &
    Clone the project locally by using the terminal. One last step Now add your files in the local folder.
  • I don't understand this URL:http://192.168.0.52/pvijayalakshmi/eEmployee.git, The host looks invalid "192.168.0.52" Your project URL should be something: https://gitlab.com/yourUsername/projectname.git –  Sep 14 '18 at 12:25
  • ok. I have created account and paste the url now:https://gitlab.com/pvijayalakshmi/eemployee.git. Now also getting the error – vishnu Sep 14 '18 at 12:35