Day 8

  • Take Home Review
  • Additional Git Commands
  • Daily Challenge
  • Columns
  • Take Home Challenge
  • Questions?
          
  git config --global user.name "John Doe"
  git config --global user.email "johndoe@example.com"

  git add [file_name] // (adds a specific file to the staging area)
  git add . // (adds all files to the staging area)
  git commit -m "commit message" // (this message will describe changes)
  git push // (upload your code to GitHub)
  git pull // (download changes from GitHub)
          
        
  1. If you haven't already added an index file, create one now
  2. If you haven't already added a stylesheet, create one now
  3. Make sure everything is linked together
  4. Add, commit and push your code to your local repository
  1. Add 2, 3 or 4 columns to your index page
  2. Add some content to each column
  3. Add, commit and push to your repository
Previous Next