https://github.com/nihildigit/animeko-woa64
WOA64 build workspace for Animeko and upstream forks
https://github.com/nihildigit/animeko-woa64
Last synced: about 1 month ago
JSON representation
WOA64 build workspace for Animeko and upstream forks
- Host: GitHub
- URL: https://github.com/nihildigit/animeko-woa64
- Owner: NihilDigit
- Created: 2026-05-13T02:42:06.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-13T02:59:33.000Z (about 1 month ago)
- Last Synced: 2026-05-13T04:37:37.054Z (about 1 month ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# animeko-woa64
WOA64 workspace for coordinating changes across the Animeko fork stack.
This repository intentionally tracks only submodule pointers and coordination
files. The actual source trees are separate Git repositories:
- `animeko` -> `git@github.com:NihilDigit/animeko.git`, branch `woa`
- `mediamp` -> `git@github.com:NihilDigit/mediamp.git`, branch `woa`
- `anitorrent` -> `git@github.com:NihilDigit/anitorrent.git`, branch `woa`
Each submodule should stay on its own `woa` branch. Code changes made inside a
submodule are committed and pushed from that submodule repository, not from this
meta repository. This repository records the exact commit combination that is
known to work.
## Layout
```text
animeko-woa64/
animeko # submodule: NihilDigit/animeko, branch woa
mediamp # submodule: NihilDigit/mediamp, branch woa
anitorrent # submodule: NihilDigit/anitorrent, branch woa
```
## Clone
```powershell
git clone --recurse-submodules git@github.com:NihilDigit/animeko-woa64.git
```
If the repository was cloned without submodules:
```powershell
git submodule update --init --recursive
```
## Update Submodules
To move every submodule to the latest commit on its configured `woa` branch:
```powershell
git submodule update --remote --merge
git status
```
Commit the resulting submodule pointer changes in this repository when the new
combination should be recorded.