GitLab Configuration
1- Check for an existing SSH key ls ~/.ssh/id_rsa.pub id_rsa.pub → Public Key (can be shared, used to authenticate with GitLab) id_rsa → Private Key (must be kept secret, never share it) If you don’t have a public key; then generate a new one ssh-keygen -t rsa -b 4096 -C “your@email.com” Default file location for […]