SER documentation: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "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.")
 
No edit summary
Line 1: Line 1:
==INTRO==
This is the documentation page for building the SER with paged.js
This is the documentation page for building the SER with paged.js


This page was born in 2025 and written by [[User:Chrissy | Chrissy]], [[User:aksellr | Tessa]] and [[User:Kiara | Kiara]].
This page was born in 2025 and written by [[User:Chrissy | Chrissy]], [[User:aksellr | Tessa]] and [[User:Kiara | Kiara]].
==GIT SHORTCUTS==
===PULL===
<code> git pull [ssh] </code>
===PUSH (Shortcut)===
<code>git commit -a -m "hello"
git push -u origin main</code>
===PUSH (long version)===
<code>git add [name of the file/folder - to repeat for everything you modified]
git commit -m "hello"
git push -u origin main</code>
===TO OVERWRITE FILES===
<code>git fetch
git reset —hard HEAD
git merge origin/main</code>

Revision as of 18:01, 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