We strongly advise you to backup everything manually or using our backup script
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
- 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
- Fetch the new update content
git fetch origin
- Merge the updated content with your own
git merge origin/main
- 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
- 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