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 -agit statusgit statusgit add mars.txtgit commit -m "starting to think about mars"git status
git add filename
git commit -m "commit message"git statusgit diff mars.txtgit add mars.txtgit commit -m "concerns about Mar's moons"git log
git remote -vgit pull origin mastergit push origin mastergit status
git add filename
git commit -m "commit message"
git push origin master
git pull origin mastergit status
git add filename
git commit -m "message"
git push origin master
git pull origin masterDracula's File
git status
git add filename
git commit -m "message"
git push origin master
git pull origin master