In order to use GitLab, the user has to install git in your PC.
reference: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
Git can be downloaded using the following URL
reference: https://git-scm.com/downloads
Then the user can check out the code using the given URL to the git repository.
copy the URL and use it in git-bash or IntelliJ Idea. you have to use the URL without changing.
I have installed IntelliJ Idea in my local PC. I am trying to clone the uploaded repository to a separate location.
I have tried to checkout using the following screen
There was an issue as “permission denied (publickey gssapi-keyex gssapi-with-mic) ”. The solution is to add an ssh key to GitLab account.
Go to .ssh folder in c://users/xxx/ folder. Then open command window (Ex : git bash)
Then type ssh-keygen
Then open id_rsa.pub and put the ssh key in the giltlab account.
Profile setting -> SSH Keys
Reference: https://git-scm.com/book/en/v1/Git-on-the-Server-Generating-Your-SSH-Public-Key
Comments
Post a Comment