- run this command to regenerate the files
hugo- go to github and create a repository whit this name
<user_name>.github.io/ for me codepediair.github.io/mysite
- and push all codes
and deploy this on github pages
winget install --id Git.Git -e --source wingetscoop install hugo-extendedhugo new site mySitecd mySitegit initgit submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/anankehugo new posts/my-first-post.mdcode .** open config.toml ** and add this line to buttom
baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = 'ananke'---
title: "My First Post"
date: 2023-02-21T10:59:28+03:30
draft: true
---
## Introduction
This is **bold** text, and this is *emphasized* text.
Visit the [Hugo](https://gohugo.io) website!hugo server --buildDrafts
hugo server -D