Skip to content

Updating

Shaunak G edited this page Sep 24, 2022 · 1 revision

You can update the script if there's a new version available, or if there's any bug fixes that have been released.

Here's how:

  1. Go into your running repl.it instance
  2. Click on the 'Console' button (it might just be a terminal icon)
  3. Type the following command and press ENTER: git pull

Errors

You have uncommitted changes...

This means that you might have edited some files yourself and the changes might be overwritten by the update. You can erase all local changes with the following command:

git reset --hard HEAD && git pull

Warning: this will overwrite all local changes with no possibility of recovery. Check that you haven't changed anything important before doing this.

Clone this wiki locally