Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.83 KB

README.md

File metadata and controls

44 lines (34 loc) · 1.83 KB

CSB Flowchart

Learning Resources

Linkedin Learning courses:

Steps For Using Git

TO DOWNLOAD:

  • Everytime you start working: "git pull"
    • it will make sure your branch is up to date with master

TO UPLOAD:

  • "git add .": adds all files in folder to be ready to commit (you can replace the . with specific files if you don't want to upload everything)
  • "git commit -m "(insert name for the commit)"": commits file to branch
  • "git push": pushed everything to branch

TO RUN PROGRAM

  • in base folder, "node app.js" or "npm start"
  • in your browser: "locahost:3000"

Implementation Resources

Code Examples:

<<<<<<< HEAD

References:

References:

bf12272 (edit readme file)