This is my first Git and GitHub practice project.
In this project, I wrote down the Git commands I used to create and modify files step by step.
mkdir First
cd First
This command tells Git to start tracking changes in the folder.
git init
Creates a new Git repository in my project folder.
Add the file to Staging and commit the first file.
git add check.txt git commit -m "My first line"
Add the file to Stage and commit the second file.
git add .gitignore git commit -m "My second line"
Add the file to Stage and commit the third file.
git add README.md git commit -m "My third line"
git branch -M main git remote add origin git push -u origin main
Links my local repo to my GitHub repository and uploads it.
git add README.md git comitt -m "Written the commands"
Task 2