Learn the fundamentals of Git by creating your first repository, tracking files, and making commits on your local machine.
Start by creating a clean directory for this lesson. This keeps your practice organized and separate from other projects.
mkdir -p ~/git-practice/lesson-101cd ~/git-practice/lesson-101The mkdir -p command creates a directory and any necessary parent directories.
The cd command changes your current directory to the newly created folder.
You should now be in the git-practice/lesson-101 directory.
You can verify this by running pwd (print working directory).