This repository contains various snapshots and changelogs of Near's 2021 translation of the Super Famicom RPG Bahamut Lagoon, along with a script that converts them into a Git repository.
To run these scripts, you'll need:
- A copy of Python 3.5 or higher
- A copy of Git
and specifically the
git fast-import
tool
Running the bahamut-lagoon-fast-export
script
should produce output that can be piped into git fast-import
.
Using it looks something like this:
-
Clone this repository:
git clone https://github.com/higan-emu/bahamut-lagoon-history-kit/
-
Make a new repository to contain the new history:
git init bahamut-lagoon
-
Import the history into the new repo:
cd bahamut-lagoon ../bahamut-lagoon-history-kit/bahamut-lagoon-fast-export | git fast import git reset --hard HEAD
-
Now the
bahamut-lagoon
repository contains the development history.