https://github.com/danielgustafsson/ekorre
ekorre - Experimental Git Foreign Data Wrapper for PostgreSQL
https://github.com/danielgustafsson/ekorre
fdw git postgres
Last synced: about 1 month ago
JSON representation
ekorre - Experimental Git Foreign Data Wrapper for PostgreSQL
- Host: GitHub
- URL: https://github.com/danielgustafsson/ekorre
- Owner: danielgustafsson
- License: other
- Created: 2024-07-30T15:12:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-20T22:31:41.000Z (over 1 year ago)
- Last Synced: 2025-08-09T22:38:56.901Z (10 months ago)
- Topics: fdw, git, postgres
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ekorre
Git foreign data wrapper
# About
This is unreleased software made to scratch a very specific itch. The intention
is to polish this into production grade code with support for qual pushdown
support.
The name "ekorre" is Swedish for squirrel, since squirrels like Git are good
at jumping between branches.
# Usage
```sql
CREATE EXTENSION ekorre;
CREATE SERVER git_server FOREIGN DATA WRAPPER ekorre;
IMPORT FOREIGN SCHEMA git
FROM SERVER git_server
INTO public
OPTIONS (
repopath '/path/to/gitrepo'
);
```