Aug 27, 2024

Backing up

First, I recommend backing up all of your project using the update script bur running

npm run backup

You will be prompted to backup your stuff.

Updating

Then, follow these simple steps

  1. If you have delete the SvelteShine remote repository, add it back (just during the update, you can remove it after)
    git remote add origin https://github.com/Angus-Paillaugue/SvelteShine
  2. Fetch the new update content
    git fetch origin
  3. Merge the updated content with your own
    git merge origin/main
  4. During the previous step, conflicts might have appeared. You will need to resolve them manually. If you mess up, remember that you have all of your files in the `backup` directory (if you backed up your work)
    git add <resolved-file>
    git merge --continue
  5. If you have delete the SvelteShine remote repository, add it back (just during the update, you can remove it after)
    git remote add origin https://github.com/Angus-Paillaugue/SvelteShine
Last updated : Aug 27, 2024