8. Making Changes To Your Website ๐ŸŽฒ

Jun 2, 2021 03:21 ยท 123 words ยท 1 minute read
โ† 7. Deploy your site using Netlify 1. Start Over โ†’
Back Home โ†’

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:

  1. add all your new changes

    git add .
    
  2. commit your changes, and finally

    git commit -m "Updated article about potatoes"
    

    (assuming you updated your article on potatoes)

  3. push them

    git push
    
โ† 7. Deploy your site using Netlify 1. Start Over โ†’
Back Home โ†’