This directory contains your static blog files ready for deployment to GitHub Pages.
-
Create a new repository on GitHub
-
Configure your Git identity:
git config --global user.name "Your Name" git config --global user.email "[email protected]"
-
Link and push to your GitHub repository:
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git git push -u origin main --force
-
Enable GitHub Pages:
- Go to your repository settings on GitHub
- Navigate to the "Pages" section
- Select "Deploy from a branch"
- Choose "main" branch and "/ (root)" folder
- Click Save
Your blog will be available at: https://YOUR_USERNAME.github.io/YOUR_REPO_NAME/
- Make your changes to the blog content
- Run the export script again
- Commit and push the changes:
git add . git commit -m "Update blog content" git push origin main