📘 Name: SIVAKUMAR P
🎓 Roll No: 24MCR102
🌐 GitHub Repo: 24MCR102 Repository
Initializing Git

git init
This command sets up a new Git repository in the project folder.

git add 24MCR102.txt
Adding files to staging prepares them for commit.

git commit -m "Added Personal Details"
Commit your changes with a message.

git status
Viewing current status of working directory and staging area.

git log
Tracking all commits with details.

git remote add origin https://github.com/sivakumarp13903/24MCR102.git
Connects your project to a remote GitHub repository.

git branch -M main
Updating branch name from master to main.

git push -u origin main
Your changes go live on GitHub.