Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/691ff205-cea0-8003-bde5-f449b081a1e1
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==== Think of Git like a 3-step publishing pipeline: ==== # <code>git add .</code> > - . means “everything that changed in this folder”. - Nothing is uploaded yet, you’re just staging the changes. # <code>git commit -m "your message"</code> > - This creates a version of your code (a checkpoint) locally on your machine. - Still not on GitHub yet. # <code>git push</code> > - This is what syncs your local work → remote repo. - If you don’t push, GitHub (and GitHub Pages) never see your new files. So when you run npm run build, it only updates files on your computer (like your /docs folder). To make GitHub Pages use that new build, you must: <syntaxhighlight lang="bash">npm run build # creates/updates /docs git add . git commit -m "Build for GitHub Pages" git push # uploads /docs + config changes </syntaxhighlight> Only after the push will you see /docs and new files in the GitHub repo UI.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)