Skip to content

Using Git

Rachael Brady edited this page Oct 20, 2024 · 4 revisions

Using Git, not github

Do not follow these instructions until the Videos are released.

  1. Git Config

Set up your git. This will be used for GitHub later.

  1. Add your name and email to your git.

First lets check if you have a name and or email set up in Git.

git config --get user.name

git config --get user.email

  1. Set your default branch

git config -global init.defaultBranchmaster

Check that it added by listing out your config. cat ~/.gitconfig

The ~ is a shortcut to your home directory. For example my full directory would be: /Users/rachael

Instead of typing ~ it would be this:

/Users/rachael/.gitconfig

Setting up your virtual environment

YouTube Playlist

Common things you need

Cheat Sheet

Install WSL

WSL

Clone this wiki locally