- Did introductions
- Discussed expectations for class and administrative issues
- Discussed VetsWhoCode Curriculum
- Shared the following websites:
- Homework:
- 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
- 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:
- git add .
- git commit -m " Your Message Here"
- git push
- 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.
- To make a branch: git checkout -b NameOfBranch
- To rebase branch: git pull --rebase
- gitflow