Background

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.

Demo

1. Create a GitHub Account

2. Install Git on Your Computer

git --version

3. Configure Git Identity in CLI

Check credentials set

git config --list 

Check Github

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

4. Git clone the forked repository (On GITHUB)

git clone HTTPS...