Skip to content

STANDROID v0.7.0 — Extension Updates Support (Implement isomorphic-git)

Latest

Choose a tag to compare

@nattaphat010447 nattaphat010447 released this 30 Jun 19:13

Bug fixes

Extension Update failing with "refusing to merge unrelated histories"

  • The "Update Extension" button in SillyTavern threw GitResponseError: refusing to merge unrelated histories
  • Root cause: simple-git's git pull fails when the local extension repo and remote have diverged histories (common after Import User Data from backup)
  • Fixed: replaced git.pull() with fetch + force-reset (equivalent to git fetch && git reset --hard origin/<branch>) — no merge operation is attempted