CS203
Spring 2013
Mar 29
git config --global user.name "Your Name" git config --global user.email "your@email.com" git config --global color.diff auto git config --global color.status auto git config --global color.branch auto
ssh-keygen -t rsa -C "your@email.com"
Note: you will be prompted for what file to save the key in–take the default; you will also be prompted for a passphrase–make one up you can remember
Account Settings icon (it’s the second icon from the right; hover over it and it should tell you which one it is)
SSH Keys, and click the button to add an SSH key
.ssh directory, and type the following command:
cat id_rsa.pub
Key text area of your browser
Add Key button
ssh -T git@github.com
Note: you may be prompted about trusting GitHub’s fingerprint. Reply ‘yes’
cs203 course directory
git clone git@github.com:Vassar-cs203/lab8.git
Examples class for your tests, and a Num class that contains an inner class named PrimesGen
PrimesGen is a private static inner class, defined within Num.
NatGen that is also an iterator, but more simply generates 1, 2, 3,...
allNats, similar in spirit to allPrimes, but the iterator returned will be an instance of NatGen.
allNats iterator
submit203 lab8 lab8
lab8 is the assignment name, the second lab8 is the root directory of the project you checked out of GitHub