About 22,400 results
Open links in new tab
  1. git clone - How to config SSH for gitlab? - Stack Overflow

    In my experience, I had to connect to the gitlab server, as the git user, and modify the authenticated_keys file, as it was filled with a bunch of random # 's. after clearing that, I added …

  2. git - How do I clone from GitLab? - Stack Overflow

    May 25, 2022 · If you have configure your SSH key, make sure: said ssh key does authenticate your properly: ssh -Tv [email protected] to use an SSH URL when cloning your GitLab repository …

  3. How do I enable cloning over SSH for a Gitlab runner?

    Aug 29, 2016 · 33 I am having some trouble cloning large repositories over HTTP on my Windows Gitlab runner. I've tried several methods to do shallow clones or disable clone compression. …

  4. git clone through ssh - Stack Overflow

    I have a project on which I created a git repository: $ cd myproject $ git init $ git add . $ git commit I the wanted to create a bare clone on another machine: $ cd .. $ git clone --bare

  5. Git how to clone with SSH key, username - Stack Overflow

    I have the following and i need to clone the repository in either windows terminal command prompt or linux. URL: [email protected]:xxx/xxx/git username: [email protected] SSH key: ssh-rsa …

  6. git - When would one use ssh or http to clone? - Stack Overflow

    Aug 10, 2016 · 8 When cloning a Git repository, one has a couple of options on the url to clone the repository from. For exapmle, https and ssh. I understand one would use the ssh if the …

  7. How can I clone a private GitLab repository? - Stack Overflow

    If you want to use your private SSH key (with the public key being added to your private GitLab project before), see the answer of @UlisesRosas-Puchuri: you would need to ssh -i your …

  8. gitlab not cloning ( ssh ) stuck at "Cloning into 'repo'..."

    Mar 31, 2020 · Hi Im trying to clone repo from gitlab with ssh. but it stucks at "Cloning into 'repo'..." Note : same rsa key works fine when i try to clone from github, so there might not be …

  9. ssh keys - How to clone private group's GitLab repository without ...

    Dec 7, 2021 · IdentityFile ~/.ssh/id_rsa_gitlab I have tested that the communication works using ssh -T [email protected] as in the docs. Now, I would like to clone my group's private repo. But …

  10. Getting permission denied (public key) on gitlab - Stack Overflow

    Nov 4, 2016 · Set up an SSH key on my computer and added the public key to GitLab Done the config --global for username and email Cloned via SSH and via HTTP to check if it would …