Getting Started with Git
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:
Create a new Github account if you don’t have an account
Connecting to Github with SSH
Generate a new SSH key
Add the SSH key to Github
To verify that Github is working, refer to this guide and run the given command (ssh -T [email protected]
) to ensure that your SSH connection is working correctly.
For this workshop, you'll also need lazygit. Follow the instructions here
Last updated