This repo contains Aiven's fork of "The PostgreSQL RPMs Project".
-
Add the upstream
pgrpms
repo to your remotes$ git remote add upstream git://git.postgresql.org/git/pgrpms.git
-
It should then be visible in your list of remotes
$ git remote -v origin git@github.com:aiven/pgrpms.git (fetch) origin git@github.com:aiven/pgrpms.git (push) upstream git://git.postgresql.org/git/pgrpms.git (fetch) upstream git://git.postgresql.org/git/pgrpms.git (push)
-
Fetch changes from the upstream
$ git fetch upstream
-
Merge
upstream/master
intomain
$ git checkout main && git rebase upstream/master
-
Push the changes to
origin/main
$ git push