These are the class notes. You can copy them to your computer if you like.
See https://github.com/jherrlin/ClassNotes/issues.
Important: If you have never cloned the notes before, please see the First Time instructions below.
# Go home
pushd ~/
# see that you got there
pwd
# see what you see
ls
# Get to the notes directory
pushd ~/ClassNotes
# see that you got there
pwd
# see what you see
ls
# check the current state
git status
# Pull the updates
git pull origin master
# check the state again
git statusImportant: If you have already cloned the ClassNotes folder, you don't need to clone it again. Instead you should update it as mentioned above.
-
If you haven't done so, set your get User Name, Email, and coloring
# DON'T COPY / PASTE!!! Change it first! git config --global user.name "John Doe" git config --global user.email john.doe@email.com # Get your git color on git config --global color.ui true
-
If you haven't done so, and create an ssh key
# This creates a key if one doesn't exist ls ~/.ssh/id_rsa.pub || ssh-keygen
-
Go to https://github.com/jherrlin/ClassNotes (you're already here)
-
Clone the repository to your own computer
# Go to your home pushd ~ # see that you got there pwd # see what you see ls # Clone the repo git clone https://github.com/jherrlin/ClassNotes.git ./ClassNotes # Check that it was cloned ls # Get into the folder pushd ClassNotes # see that you got there pwd # see what you see ls
-
Be Happy