GitHub is essential for version controlling our code, so we'll use this to push changes every time we make a significant change to our repository.
By pushing commits frequently, we can revert back to a stable version of our app easily.
These commits can also be used in Cursor chats as additional context.
brew install git
or download from git-scm.comsudo apt install git
)git --version
Check credentials set
git config --list
Check Github
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
git clone HTTPS...