I referred this link: Connecting to GitLab repositories on Android Studio
In step 1, I am getting this
In step3, I am getting this error:
Remote URL test failed: Unable to find remote helper for 'https'
Please help me.
Any help would be appreciated.
I referred this link: Connecting to GitLab repositories on Android Studio
In step 1, I am getting this
In step3, I am getting this error:
Remote URL test failed: Unable to find remote helper for 'https'
Please help me.
Any help would be appreciated.
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.