Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.99 KB

week_01.md

File metadata and controls

42 lines (31 loc) · 1.99 KB

Week 1

Day 1

Introductions, setup, VS Code, computers

Day 2

Homework review on the internet and "What is code", CRUD, TCP/IP

  • shared Duncan Mackenzie
  • CRUD is an acronym that comes from the world of computer programming and refers to the four functions that are considered necessary to implement a persistent storage application: create, read, update and delete

Day 3

Markdown, Git / Git Workflow

  • Talked about Markdown, Git and Git Workflow
  • What is TCP/IP and How Does it Work?
  • TCP/IP stands for Transmission Control Protocol/Internet Protocol - a protocol suite used to transfer data on the internet.
  • to push to github:
    1. git add .
    2. git commit -m " Your Message Here"
    3. git push

Homework:

  1. Clone repo, make your own branch, add your name, ensure that your branch is clean and doesn't have merge conflicts, (if it does, ask for help and we will help you) go through the merge process.
  2. To make a branch: git checkout -b NameOfBranch
  3. To rebase branch: git pull --rebase
  4. gitflow