I have recently found myself learning Git as part of my Data Science upskilling journey. I consider it as a means to do configurations on your local machine with version control to track changes and managing projects.

I worked on a project that had me set up a folder, add new files and upload to Github. Some of the commands I used include:

mkdir: This is used to create a new directory e.g. mkdir myproject.

pwd: This is used to check the parent working directory e.g in my case the parent working directory will be my Desktop where I created myproject folder.

cd: This is used to open or go into a directory in the example above it allows me to open the myproject directory.