Skip to content
Hyeyoon Kang edited this page Mar 26, 2026 · 4 revisions

πŸš€ Run the Page Locally Using Jekyll

First, install Ruby by following the instructions here.

To run the site locally, you can follow the official Jekyll setup guide here,
or simply use the commands below:

sudo gem install jekyll
sudo gem install rouge
jekyll serve

Once started, open your browser and go to http://localhost:4000 to view the site.


πŸ”„ Update Workflow

1. Clone the Repository and Create a New Branch

git clone https://github.com/postechsv/postechsv.github.io
cd postechsv.github.io
git checkout -b yourname

2. Make Changes and Push

😊 ...make your awesome edits...

git add .
git commit -m "Awesome change"
git push origin yourname

3. Submit a Pull Request on GitHub

Open GitHub and create a Pull Request from your branch.
Once submitted, just wait for approval πŸ‘

image image

4. Clean Up After Merge

Once your PR is merged, you can delete your working branch locally and remotely:

git branch -D yourname
git push origin --delete yourname