Gitlab 1️⃣ Install Git sudo apt update sudo apt install git -y 2️⃣ Configure Git git config --global user.name "Your Name" git config --global user.email "your.email@example.com" 3️⃣ Initialize the repository (replace with your desired path) mkdir -p /home/intern1/test-pipeline cd /home/intern1/test-pipeline git init