Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 835 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 835 Bytes

pgrpms (Aiven fork)

This repo contains Aiven's fork of "The PostgreSQL RPMs Project".

Updating the fork

  1. Add the upstream pgrpms repo to your remotes

     $ git remote add upstream git://git.postgresql.org/git/pgrpms.git
    
  2. 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)
    
  3. Fetch changes from the upstream

     $ git fetch upstream
    
  4. Merge upstream/master into main

     $ git checkout main && git rebase upstream/master
    
  5. Push the changes to origin/main

     $ git push