Adding Changes to a Preexisting Repo

Prequisites

Part 1 - Cloning a Preexisting Project

Part 2 - Adding Changes to Preexisting Git Repository

  1. navigate to the root directory of the project on your local machine
  2. add changes
    • git add .
  3. commit change
    • git commit -m 'update message'
  4. push changes to web
    • git push -u origin master
  5. Refresh the webpage to ensure your changes are visible.