SER documentation

From XPUB & Lens-Based wiki
Revision as of 18:01, 24 March 2025 by Chrissy (talk | contribs)

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