Git Commit

We’ve now added the ability to save talks to the database with timestamps and display a list of our talks. Now would be a good time to git add, commit, and push our changes.

  1. Open a terminal window (or reuse one you already have open) and navigate to your jumpstart-webdev directory.

  2. Add your new template to version control in your local repository:

git add app.py templates/talks.html
  1. Commit your changes to your local repository:
git commit -m "save talks to database and display list of talks"
  1. Push your changes to GitHub:
git push

You can confirm through the github.com interface that the code is now there.