reading-notes

Class 3 - Revisions and the Cloud

ACP Flow Chart

Lab 3 - Revisions and the Cloud

Setup and Requirements

  1. Clone down reading-notes repo to local computer to work in VS Code
  2. Continue Markdown practice
  3. Review past reading-notes entries and correct and fix typos
  4. Build out site structure by creating new directory for 102 notes with 8 files and 201 notes with 15 files
  5. Ensure homepage only has intro, website description, and table of contents
  6. Use Markdown to create a link from the Table of Contents to the topic’s page
    • Heading for Code 102 Reading Notes, 8 links to current and future 102 Reading notes
    • Heading for Code 201 Reading Notes, 15 links to future 201 Reading notes
  7. Keep a clean git history, write commit messages to explain why your changes were made.

Written Class Notes

Read 3 - Revisions and the Cloud Reflection and Discussion

Resources Link/Pages:

  1. Git Intro

Answer

  1. What is Version Control?
    • A system that allows you to visit previous versions of a file or project and you can track and modify changes.
  2. What is cloning in Git?
    • Copying all versions of all files for a project from remote to locally
  3. What is the command to track and stage files?
    • Use git add file name for one file or git add . for all files
  4. What is the command to take a snapshot of your changed files?
    • Use git commit -m “commit message”
  5. What is the command to send your changed files to Github?
    • Use git push origin main