Skip to content

Upgrading SuperStack

Beau Barker edited this page Oct 20, 2025 · 2 revisions

If you want to keep SuperStack’s git history and pull upstream changes later, it requires a different installation method from the beginning.

Clone SuperStack:

git clone https://github.com/explodinglabs/superstack.git myapp-backend
cd myapp-backend

Create your own repo, naming it the same as you did above.

Then:

git remote rename origin upstream
git remote add origin https://github.com/yourname/myapp-backend.git
git push -u origin main

You can now pull upstream changes with:

git pull upstream main

Clone this wiki locally