Getting Started:
You can create either one first. In this lesson we are going to create the remote repo and then make a local copy
Find a partner
Decide who is Wolfman and who is Dracula
Login or create an account on github.com
Select "New Repository" from the "+" menu in the upper right corner
Fill in info (as below)
Repo name: if you're Wolfman this should be planets_wolfman
Short description
Public: note edu and paid accts can have private repos
Start with a README
and a license (note: you have options)
type: git clone <paste text>
git config --global user.name "Your Name"
git config --global user.email "YourEmail@email.edu"
git config --global color.ui "auto"
git config --global core.editor "nano"
ls -a
git status
git status
git add mars.txt
git commit -m "starting to think about mars"
git status
git add filename
git commit -m "commit message"
git status
git diff mars.txt
git add mars.txt
git commit -m "concerns about Mar's moons"
git log
git remote -v
git pull origin master
git push origin master
git status
git add filename
git commit -m "commit message"
git push origin master
git pull origin master
git status
git add filename
git commit -m "message"
git push origin master
git pull origin master
Dracula's File
git status
git add filename
git commit -m "message"
git push origin master
git pull origin master