Setup

It is very important that these steps are done correctly to ensure that you can follow along.

To follow along this guide, you need to install the following:

To ensure that everything is working, run the following commands:

git version

You should see text like this:

git version 2.42.0

Once Git is setup on your local machine, do some initial configuration:

git config --global user.email "<your email>"
git config --global user.name "<your name>"

Then, setup Github as such:

  1. Create a new Github account if you don’t have an account

  2. Connecting to Github with SSH

    1. Generate a new SSH key

    2. Add the SSH key to Github

To verify that Github is working, refer to this guide and run the given command (ssh -T git@github.com) to ensure that your SSH connection is working correctly.

Last updated