Hugo Github source files repository

Hi,

First of all let me say that I am a newcomer to Hugo and to Github. So, please, be patient :slight_smile:

I followed the instructions at https://gohugo.io/hosting-and-deployment/hosting-on-github/ and I am able to deploy my Hugo website to my USERNAME.github.io repository. But I want to know how can I send my source files to my blog repository on GitHub that was created to contain Hugo’s content and other source files.

Thanks
webkernel

According to the automation script:

cd public (assuming you are in your site folder already)
git add .
git commit -m "A description of what I'm uploading" (the-m and description is optional)
git push origin master

1 Like

GitHub will cover that in their documentation.

1 Like