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...
Step-by-Step Git Commands Execution:
Initialize a Git repository:
git init
Creates a new Git repository in the folder 24MCR082.Add a file to staging area:
git add 24MCR082.txt
...
🧠 Workshop Highlights
The workshop aimed to introduce participants to the fundamentals of Git and GitHub, with a focus on managing .txt files and understanding the commit process skills that are cr...
1. git init
Initializes a new Git repo in your current directory.Explanation: This command turns the current folder into a Git-tracked project.2. git add
Adds files to staging.
Example: gi...
Prerequisites
Git installed on your system
GitHub account
Terminal or Command Prompt access
A GitHub repository created (or create one here)
link: https://docs.google.com/document/d/1KUMSzkcMatmnQAepq...
1. git initDescription:
Initializes a new Git repository in your project directory.Command:
git initScreenshot: 2. git addDescription:
Stages changes (files or updates) to be committed.Command:
git ...
1. Initialize Your Git RepositoryFirst things first, we need to turn your project folder into a Git repository. Open your terminal and run this command:
This creates a .git folder in your project, whi...
What is Version Control?
Version Control, also known as Source Control, is a system that helps you manage code efficiently.version control allows you to:
> Track your files
> ...
Hey developers! Andrea Griffiths here, Senior Developer Advocate at GitHub. If you've been following the rapid evolution of AI tools in our development workflows, you're about to witness another quant...