SER documentation: Difference between revisions
No edit summary |
|||
Line 10: | Line 10: | ||
===PUSH (Shortcut)=== | ===PUSH (Shortcut)=== | ||
<code>git commit -a -m "hello" | <code>git commit -a -m "hello"<br> | ||
git push -u origin main</code> | git push -u origin main</code><br> | ||
===PUSH (long version)=== | ===PUSH (long version)=== | ||
<code>git add [name of the file/folder - to repeat for everything you modified] | <code>git add [name of the file/folder - to repeat for everything you modified]<br> | ||
git commit -m "hello" | git commit -m "hello"<br> | ||
git push -u origin main</code> | git push -u origin main</code><br> | ||
===TO OVERWRITE FILES=== | ===TO OVERWRITE FILES=== | ||
<code>git fetch | <code>git fetch<br> | ||
git reset —hard HEAD | git reset —hard HEAD<br> | ||
git merge origin/main</code> | git merge origin/main</code> |
Revision as of 18:04, 24 March 2025
INTRO
This is the documentation page for building the SER with paged.js
This page was born in 2025 and written by Chrissy, Tessa and Kiara.
GIT SHORTCUTS
PULL
git pull [ssh]
PUSH (Shortcut)
git commit -a -m "hello"
git push -u origin main
PUSH (long version)
git add [name of the file/folder - to repeat for everything you modified]
git commit -m "hello"
git push -u origin main
TO OVERWRITE FILES
git fetch
git reset —hard HEAD
git merge origin/main