Step 1: Initialize Git

git init

Image description

This creates a new Git repository in the current directory.

Step 2: Add Files to Staging Area

git add filename

Image description

This stages all the files (in my case, the 24MCR115 file) for commit.

Step 3: Commit Changes

git commit -m "Initial commit with 24MCR115 details"

Image description

This commits the staged files with a message.

Step 4: Check Repository Status

git status

Image description

To see what’s changed and what’s staged/untracked.

Step 5: View Commit History

git log

Image description

To view all commits made to the repository.

Step 6: Create or Rename Branch

git branch
git branch -M main

Image description

Check current branches and rename the branch to main.

Step 7: Configure Git Identity

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

Set your GitHub username and email.

Step 8: Link to Remote Repository

git remote add origin https://github.com/your-username/24MCR115.git

Image description

This connects your local repo to the GitHub repository.

Step 9: Push to GitHub

git push -u origin main

Image description

Image description

Push your committed changes to GitHub under the main branch.