1.4 KiB
1.4 KiB
Docs
Notes
- These docs are intended to be friendly and understandable for beginners, so anyone can rapidly assume ownership of this code.
- Don't confuse these docs with the Content Collection called docs.
Recommended reading order:
- Tech Stack - Explains the choice of technologies used for this application, their limitations, and all the setup needed to get the site deployed to the internet.
- Project Structure - Provides an overview of the project directory.
- Customization - Points out the areas of highest impact for customization, and examples of this template's range.
Git Quick Reference
The Main Loop
Once you've made all the changes you want...
- Stage your changed files for commit:
git add . - Commit them, with a descriptive message:
git commit -m "message here" - Push the changes up to GitHub:
git push origin main
Other Useful Commands
If there's a change to any of your Node packages: npm install
If you mess things up real bad and just want to revert to the last commit: git reset --hard
When you want to pull changes down from GitHub: git pull origin main
See Also
Astro Documentation - The official documentation for Astro. If there's an Astro topic you're confused about, you can probably find a consise and clear explanation here.