🌐
PostgreSQL
postgresql.org › docs › current › git.html
PostgreSQL: Documentation: 18: I.1. Getting the Source via Git
May 14, 2026 - git clone https://git.postgresql.org/git/postgresql.git · This will copy the full repository to your local machine, so it may take a while to complete, especially if you have a slow Internet connection. The files will be placed in a new subdirectory postgresql of your current directory.
🌐
PostgreSQL
postgresql.org › docs › 9.1 › git.html
PostgreSQL: Documentation: 9.1: Getting The Source via Git
October 11, 2021 - The Git mirror can also be reached via the HTTP protocol, if for example a firewall is blocking access to the Git protocol. Just change the URL prefix to http, as in: git clone http://git.postgresql.org/git/postgresql.git
🌐
Pgcon
pgcon.org › 2010 › schedule › attachments › 162_pg-git.pdf pdf
Using Git with PostgreSQL Andrew Dunstan andrew@dunslane.net
Using Git with PostgreSQL · Andrew Dunstan · andrew@dunslane.net · andrew.dunstan@pgexperts.com · Playing along · ●Community repository · – git clone git://git.postgresql.org/git/postgresql.git · git://git.postgresql.org/git/postgresql.git · pgsql · ●My repository: – git clone git ·
🌐
PostgreSQL Wiki
wiki.postgresql.org › wiki › Working_with_Git
Working with Git - PostgreSQL wiki
December 23, 2024 - One option while requesting a project at git.postgresql.org is to have a clone of the main postgresql repository.
🌐
PostgreSQL Wiki
wiki.postgresql.org › wiki › Committing_with_Git
Committing with Git - PostgreSQL wiki
May 23, 2025 - All of these steps except the first should be repeated for each branch for which you wish to maintain a clone. (If your user name and/or email are configured globally, you need not configure them again for each new repository.) With this approach, the REL9_0_STABLE repository will pull from and push to the local postgresql repository, which in turn will pull from and push to the master server. Thus, you must do this to update (supposing both repositories are in your home directory): cd ~/postgresql.git git fetch cd ~/REL9_0_STABLE git pull
🌐
GitHub
github.com › postgres › postgres
GitHub - postgres/postgres: Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch · GitHub
Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch - postgres/postgres
Starred by 21.5K users
Forked by 5.8K users
Languages   C 82.9% | PLpgSQL 7.7% | Perl 4.9% | Yacc 1.2% | Meson 0.7% | Makefile 0.6%
🌐
Andrew Nesbitt
nesbitt.io › 2026 › 02 › 26 › git-in-postgres.html
Git in Postgres | Andrew Nesbitt
February 26, 2026 - To test this I built gitgres, about 2,000 lines of C implementing the libgit2 git_odb_backend and git_refdb_backend interfaces against Postgres through libpq, plus roughly 200 lines of PL/pgSQL for the storage functions. libgit2 handles pack negotiation, delta resolution, ref advertisement, and the transport protocol while the backend reads and writes against the two tables, and a git remote helper (git-remote-gitgres) lets you add a Postgres-backed remote to any repo and push or clone with a normal git client that has no idea it’s talking to a database.
🌐
PostgreSQL
postgresql.org › docs › 12 › git.html
PostgreSQL: Documentation: 12: I.1. Getting the Source via Git
November 21, 2024 - The files will be placed in a new subdirectory postgresql of your current directory. The Git mirror can also be reached via the Git protocol. Just change the URL prefix to git, as in: git clone git://git.postgresql.org/git/postgresql.git
🌐
GitHub
github.com › valehdba › pgclone
GitHub - valehdba/pgclone: A PostgreSQL extension for cloning, masking, post cloning ckecking databases, schemas, tables, and functions between PostgreSQL hosts — without leaving your database session.
April 12, 2026 - Cross-version - tested on PostgreSQL 14, 15, 16, 17, and 18 · # Build and install git clone https://github.com/valehdba/pgclone.git cd pgclone make sudo make install
Author   valehdba
🌐
PostgreSQL
postgresql.org › docs › 8.1 › sourcerepo.html
PostgreSQL: Documentation: 8.1: The Source Code Repository
January 1, 2012 - The Git mirror can also be reached via the HTTP protocol, if for example a firewall is blocking access to the Git protocol. Just change the URL prefix to http, as in: git clone http://git.postgresql.org/git/postgresql.git
Find elsewhere
🌐
GitHub
gist.github.com › jrr › cc6feb5ed9f62aeffbcac3795edb0dd1
Postgres clone · GitHub
Save jrr/cc6feb5ed9f62aeffbcac3795edb0dd1 to your computer and use it in GitHub Desktop. ... Scripts to locally clone a remote Postgres DB, through an SSH tunnel.
🌐
Vonng
blog.vonng.com › en › pg › pg-clone
Git for Data: Instant PostgreSQL Database Cloning · Vonng
December 27, 2025 - Clone a new one—200 milliseconds. “Git for Data” has been hyped for years, with various startups raising plenty of funding. But PostgreSQL delivers its own answer in a simple, direct way: No extra middleware needed, no complex architecture, leveraging existing modern filesystem capabilities, with native database kernel support.
🌐
Withgoogle
codein.withgoogle.com › archive › 2018 › organization › 5645175091101696 › task › 6527895862247424
Building PostgreSQL from Source - PostgreSQL - 2018 - Google Code-in Archive
The Git repository can be found here: https://git.postgresql.org/gitweb/?p=postgresql.git with URLs in the upper left hand corner to reference for cloning the repo.
🌐
PostgreSQL
postgresql.org › docs › 15 › git.html
PostgreSQL: Documentation: 15: I.1. Getting the Source via Git
May 14, 2026 - git clone https://git.postgresql.org/git/postgresql.git · This will copy the full repository to your local machine, so it may take a while to complete, especially if you have a slow Internet connection. The files will be placed in a new subdirectory postgresql of your current directory.
🌐
pgPedia
pgpedia.info › g › GIT.html
GIT - pgPedia - a PostgreSQL Encyclopedia
Originally, PostgreSQL used CVS for source control, and migrated to GIT in 2010 [1]. Many associated PostgreSQL projects now also use GIT. ... No password or authentication is necessary. On a fast connection with an average download rate of around 6MiB/s, it took about 60 seconds to clone the entire repository.
🌐
Postgres Professional
postgrespro.com › docs › postgresql › 16 › git
PostgreSQL : Documentation: 16: I.1. Getting the Source via Git : Postgres Professional
git clone https://git.postgresql.org/git/postgresql.git · This will copy the full repository to your local machine, so it may take a while to complete, especially if you have a slow Internet connection. The files will be placed in a new subdirectory postgresql of your current directory.
🌐
Lobsters
lobste.rs › s › ibkc72 › git_postgres
Git in Postgres | Lobsters
February 26, 2026 - I work with some really sizable ... for git are about getting as much batching and precomposition as possible, and the strength of databases is around returning different things every time. ... I think that this is mostly for forge hosting, not local clones....
🌐
GitHub
gist.github.com › johndevs › 163b5a2c1f73bdb3c653d5a495f83e9a
Clone Postgres database · GitHub
Save johndevs/163b5a2c1f73bdb3c653d5a495f83e9a to your computer and use it in GitHub Desktop. Download ZIP · Clone Postgres database · Raw · pg_db_clone.sh · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below.