Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aiven/pgrpms
https://github.com/aiven/pgrpms
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aiven/pgrpms
- Owner: aiven
- Created: 2018-03-01T13:58:41.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T21:37:59.000Z (over 1 year ago)
- Last Synced: 2023-10-11T02:33:48.669Z (over 1 year ago)
- Language: Makefile
- Size: 827 MB
- Stars: 0
- Watchers: 101
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pgrpms (Aiven fork)
This repo contains Aiven's fork of ["The PostgreSQL RPMs Project"](https://git.postgresql.org/gitweb/?p=pgrpms.git;a=tree).
## Updating the fork
1. Add the upstream `pgrpms` repo to your remotes
$ git remote add upstream git://git.postgresql.org/git/pgrpms.git
1. 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)1. Fetch changes from the upstream
$ git fetch upstream
1. Merge `upstream/master` into `main`
$ git checkout main && git rebase upstream/master
1. Push the changes to `origin/main`
$ git push