You are on page 1of 1

Gitlab Setup Procedure:

1. Install Git
2. Create Gitlab Account and Repository
3. Create SSH Key
-> Open Git Bash & Execute

ssh-keygen -t ed25519 -C "tamilselvan@bluewindinnovation.com"

-> Copy the Public SSH Key

cat ~/.ssh/id_ed25519.pub | clip

-> Optional
eval `ssh-agent -s`
ssh-add ~/.ssh/id_ed25519

4. Add the public SSH Key to gitlab account

5. Connect to GitLab
> Check the connection & fingerprint

ssh -T git@gitlab.com

6. Clone the repository

git clone git@gitlab.com:bluewind-innovations/BluBreeze.git

git config --global user.email "tamilselvan@bluewindinnovation.com"

git config --global user.name "Muthamizh Selvan N"

You might also like