Hey everyone! 👋

I'm Indujha, and I'm currently learning Machine Learning in a workshop. As part of our tasks, we were introduced to Git—a version control system that's super helpful when working on coding projects.

At first, I was confused 😅, but once I tried the basic commands, it actually made a lot of sense. Here’s what I did and learned 👇

Git Commands:

git init
git add File name
git commit -m "---"
git status
git log
git branch
git branch -M main
git config --global user.email "[email protected]"
git config --global user.name "name"
git remote add origin link
git push -u origin main

Image description
Image description
Image description