What *is* helpful is to add the real upstream as a second remote to your local clone. `git remote add upstream <usr@froge:<URL TO REPO>` so you can update your local clone to the current state of upstream with a `git fetch upstream` followed by a `git merge upstream/main`.