ACTIVITY #4 Git Fundamentals
Step 1: Check Git Version
git --version
Step 2: Configure Git
git config --global user.name "Your Name"git config --global user.email "your.email@example.com"
Step 3: Initialize a Git Repository
git init
Step 4: Add Files to the Repository
git ad...
jacquelineaparijado.hashnode.dev1 min read