Now that your site is live on Netlify, every time you make a changes to the content on your computer - your live site won’t reflect these changes right away.
But because your hugo site is on a Git respository connected to Netlify, we can use git commands to tell Netlify to deploy these new changes.
For changes to show, you will need to:
-
add all your new changes
git add . -
commit your changes, and finally
git commit -m "Updated article about potatoes"(assuming you updated your article on potatoes)
-
push them
git push