ACTIVITY #4 Git Fundamentals Documentation

1.Check Git version

2.Configure Git
use this commands:
git config --global user.name "Github Username"
git config --global user.email "your.email@example.com"
already configured, I'll show you how to check user and email using this commands:
git config --global user.name
git config --global user.email

3.Initiliaze Repository
use the git command;
git init

4. Add files to the Repository
git add .

5. Check Status
git status


6. Commit Changes
git commit -m "Initial commit"



