You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates a SQLite database containing the entire git repository as part of the release process. This allows users to clone the repository directly from the SQLite database using git-remote-sqlite itself.
The database is created by:
1. Creating a temporary bare git repository
2. Mirroring the current repository to the temp repo
3. Using git-remote-sqlite to push from temp repo to SQLite
The resulting git-remote-sqlite.db file is included in GitHub releases alongside the binary archives.
Ran `zig build repo-db` locally and verified:
- Database is created successfully at zig-out/git-remote-sqlite.db
- Contains 82 git objects and 2 refs
- File size is ~264KB
- Can be cloned with: git clone sqlite:///path/to/git-remote-sqlite.db
0 commit comments