While our focus will be on building Git functionality from the ground up, we will utilize commands like git log --oneline --graph
to inspect and understand the modifications within our Git repository.
This approach will help us visualize the commits and the branching structure.
Skip this if you have git installed.
To verify if git is installed run following in the terminal:
git --version
brew install git
For Debian/Ubuntu-based systems, update your package list and install Git:
sudo apt-get update
sudo apt-get install git