DEV Community

Cover image for My First Git Experience: What I Learned as an ML Workshop Beginner
Indujha-22
Indujha-22

Posted on

My First Git Experience: What I Learned as an ML Workshop Beginner

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 "mail@gmail.com"
git config --global user.name "name"
git remote add origin link
git push -u origin main

Image description
Image description
Image description

Top comments (0)