├── Changelog ├── HISTORY.md ├── LICENSE.md ├── META.json ├── Makefile ├── README.md ├── execution_state.h ├── git_fdw--1.1.0.sql ├── git_fdw.c ├── git_fdw.control ├── options.h ├── plan_state.h └── scripts └── deploy /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/Changelog -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # HISTORY 2 | 3 | ## 1.0.0 4 | 5 | * First alpha release 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/README.md -------------------------------------------------------------------------------- /execution_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/execution_state.h -------------------------------------------------------------------------------- /git_fdw--1.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/git_fdw--1.1.0.sql -------------------------------------------------------------------------------- /git_fdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/git_fdw.c -------------------------------------------------------------------------------- /git_fdw.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/git_fdw.control -------------------------------------------------------------------------------- /options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/options.h -------------------------------------------------------------------------------- /plan_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/plan_state.h -------------------------------------------------------------------------------- /scripts/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franckverrot/git_fdw/HEAD/scripts/deploy --------------------------------------------------------------------------------