This repo contains Aiven's fork of "The PostgreSQL RPMs Project".
-
Add the upstream
pgrpmsrepo 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 [email protected]:aiven/pgrpms.git (fetch) origin [email protected]: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/masterintomain$ git checkout main && git rebase upstream/master -
Push the changes to
origin/main$ git push