Activity#4 Git Fundamentals Documentation on Hashnode.com
Step 1 : check for git version
Step 2 : Configure git
Step3: Initialized a git reposotory
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