├── .github └── workflows │ ├── claude.yml │ └── main.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── docs ├── development.md ├── schema.md └── style.md └── src ├── cli.zig ├── cmd.zig ├── config.zig ├── e2e.sh ├── git.zig ├── help.zig ├── main.zig ├── protocol.zig ├── remote.zig ├── sqlite.zig ├── tests.zig └── transport.zig /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/docs/style.md -------------------------------------------------------------------------------- /src/cli.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/cli.zig -------------------------------------------------------------------------------- /src/cmd.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/cmd.zig -------------------------------------------------------------------------------- /src/config.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/config.zig -------------------------------------------------------------------------------- /src/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/e2e.sh -------------------------------------------------------------------------------- /src/git.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/git.zig -------------------------------------------------------------------------------- /src/help.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/help.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/protocol.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/protocol.zig -------------------------------------------------------------------------------- /src/remote.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/remote.zig -------------------------------------------------------------------------------- /src/sqlite.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/sqlite.zig -------------------------------------------------------------------------------- /src/tests.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/tests.zig -------------------------------------------------------------------------------- /src/transport.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislloyd/git-remote-sqlite/HEAD/src/transport.zig --------------------------------------------------------------------------------