Skip to main content

All Questions

Tagged with
1 vote
0 answers
361 views

How to add SSH key to Gitlab-ce in Docker

I am running Gitlab-ce V16.5.1 in a docker container. I need to add a proper SSH key to my profile in order to use HTTPS/SSH and to enable my pipelines to complete without generating HTTP Basic Access ...
Factor Three's user avatar
0 votes
1 answer
662 views

can we limit git user for push or merge by git

I remember that when I was using SVN, I could able to define user and assign them different privileges without any third party application. I want to check do we have the same feature in Git? If ...
Amir's user avatar
  • 577
3 votes
1 answer
14k views

ssh authentication failure with public/private keys

I'm setting up a Continuous Deployment pipeline on gitlab. Unfortunately, when trying to ssh from the pipeline to the target server, the authentication fails. I am asking the question here because I ...
Jean-Francois's user avatar
2 votes
1 answer
766 views

Generating SSH keys for GitLab on OS X 10.11

I've got GitLab CE installed and I'm trying to set up an SSH key so I can push my git repos to GitLab, but there's inconsistency with what the documentation says I should be getting and what my ...
Kyle Falconer's user avatar
1 vote
0 answers
311 views

ssh_exchange_identification after few attempts

To help find diagnose a ssh issue with a gitlab server, I've written the following script #!/bin/bash while : ; do ssh -v [email protected] || exit 1 done After few successful iterations (...
Francis's user avatar
  • 121