Re: PostgreSQL 8.4 development plan

From: Florian Pflug <fgp(dot)phlo(dot)org(at)gmail(dot)com>
To: Aidan Van Dyk <aidan(at)highrise(dot)ca>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, Brendan Jurd <direvus(at)gmail(dot)com>, Markus Bertheau <mbertheau(dot)pg(at)googlemail(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: PostgreSQL 8.4 development plan
Date: 2008-02-08 14:18:49
Message-ID: 47AC64C9.4070102@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Aidan Van Dyk wrote:
> The Git repo certainly is an "incremental" update.
>
> If you ever see a "rewind" (non-fastforward) of the the repo.or.cz
> PostgreSQL repo, please let me know...

Hm... interesting...

I'm pretty sure that the "past" changed at least once - at least I once
got loud complaints from git about being unable to merge because there
is no common anchestor, or something like that.

I seem the remember that I fixed that manually, and only switched to
using git-cherry when it happened again - but that memory could be wrong...

For reference, here is the script I use for fetching changesets ATM
--------------------------
#Checkout pgsql-head.
git-checkout pgsql-head 2>&1 || exit 1

#Pull the latest changesets
git-fetch pgsql-upstream-git 2>&1 || exit 1

#Now find all unapplied commits from upstream,
#and commit them
set -o pipefail
nice git-cherry \
pgsql-head \
pgsql-upstream-git/master \
pgsql-upstream-git-lastmerged \
| sed -n 's/^\+ \([A-Fa-f0-9][A-Fa-f0-9]*\)$/\1/p' \
| xargs -n1 --no-run-if-empty \
git-cherry-pick \
2>&1 \
|| exit 1

#Now, update pgsql-upstream-git-lastmerged
git tag -f pgsql-upstream-git-lastmerged pgsql-upstream-git/master \
|| exit 1
--------------------------

regards, Florian Pflug

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Gregory Stark 2008-02-08 14:32:31 Patch review
Previous Message Alvaro Herrera 2008-02-08 13:38:45 Re: PostgreSQL 8.4 development plan