Hey everyone! 👋

I'm Annisha , 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.

git init: Initializes a new Git repository in the current directory.
git add: Stages changes (files or modifications) for commit.
git commit: Records staged changes with a message in the repository’s history.
git push: Uploads commits to a remote repository (like GitHub).
git status: Shows the current status of the working directory and staged files.
git log: Displays the commit history for the repository.
git branch: Lists all branches in the repository.
git branch -M: Renames the current branch to a new name.
git config username: Sets the Git username for the current repository or globally.
git config email: Sets the Git email for commits in the repository or globally.
git remote add origin: Links the local repository to a remote repository

Image description
Image description