Goals
The goal before we meet is to have the following done:
- Set up a Github account
- Install Git on your computer
- Configure your user name and email on Git
- Install a Git client/GUI (we’ll use GitKraken)
- You may need to install a shell on your computer if you’re on Windows. Mac users can just use the Terminal app (which should already be on your compouter)
Setting up Git and Github
Introduce yourself to Git
Run the code below in your shell.
user.name: use some version of your real name so we know who is making changes
user.email: use the email associated with your Github account
For example
git config --global user.name 'weiyangtham'
git config --global user.email 'weiyang.tham@gmail.com'
Now type in git config --global --list and see if you get the same output as I do
git config --global --list
## user.email=weiyang.tham@gmail.com
## user.name=weiyangtham
Git client
- GitKraken is a good option for us as it works across all Windows, Mac, and Linux
- Minimize having to deal with command line, but can still do stuff from the command line if you have to
- DO NOT use the free Github client
- I’ll stick with GitKraken for the workshop, but there are more Git clients here