Git Commit

We’ve now added the ability to save poems to the database with timestamps and display a list of or poems. 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/poems.html
  1. Commit your changes to your local repository:
git commit -m "save poems to database and display list of poems"
  1. Push your changes to GitHub:
git push

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