Forge Course Materials

Forge Week #1

Week #1

Notes

Welcome! This class is ~3 hours, starting at 1:30. Recitation at 10a Friday tentatively.

Welcome! Introduction to class.

Introductions from you, then me

Get To Know Each Other!

Logistics

Basic Skills for this week

Hangout

Pizza and Painting!

Homework

Recitation

Links

Other Notes

Pushing to the repo.

  1. Add ssh-key on your machine, put it in your account on gitlab (instructions)
  2. Add user-name to local config (if different than global)
#set global if you haven't used git before
git config --global user.name "Full Name"
git config --global user.email "email@depaul.edu"


#Otherwise set specifics in your project folder (assuming your git isn't tied to DePaul/this id
git config user.name "Full Name"
git config user.email "email@depaul.edu"

#now set up the remote so it knows your username
git remote rm origin
git remote add origin https://<USERNAME>@gitlab.depaulhacks.com/forge/weekly-materials.git
git push --set-upstream origin master