-
-
Notifications
You must be signed in to change notification settings - Fork 5
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:
- Go into your running repl.it instance
- Click on the 'Console' button (it might just be a terminal icon)
- Type the following command and press ENTER:
git pull
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.