ACTIVITY #2 Git Fundamentals Documentation on Hashnode.com

Instruction: follow these steps to document your Git Fundamentals Activity. Share the Hash node link on the portal, name it “ACTIVITY #4 Git Fundamentals Documentation on Medium.com”
Please add the Screenshots
Step 1: Check Git Version
git --version

Step 2: Configure Git
git config --global user.name "Usigan Romel"
git config --global user.email "romel.usigan25@gmail.com"

Step 3: Initialize a Git Repository
git init

Step 4: Add Files to the Repository
git add .

Step 5: Check the Status
git status

Step 6: Commit Changes
git commit -m "Initial commit"

Step 7: View Commit History
git log




