create a git symbolic-ref for REL9_3_STABLE

Started by Peter Eisentrautalmost 13 years ago7 messageshackers
Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

I suppose we'll be branching off 9.3 in a few weeks. That event always
creates a service gap in the build farm and similar services, and a race
in the NLS service to get everything adjusted to the new branch.

It seems to me we could already now create a git symbolic-ref named
REL9_3_STABLE that points to master, get all those services updated for
the new name, and when the actual branching is supposed to happen, we
just remove the symbolic-ref and make a real branch, and everything else
should already be in place.

I have never actually used symbolic-ref, but after playing with it a
little bit, it seems it should work fine for this purpose.

Comments?

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Peter Eisentraut (#1)
Re: create a git symbolic-ref for REL9_3_STABLE

On 06/03/2013 09:30 PM, Peter Eisentraut wrote:

I suppose we'll be branching off 9.3 in a few weeks. That event always
creates a service gap in the build farm and similar services, and a race
in the NLS service to get everything adjusted to the new branch.

The buildfarm has had a mechanism for handling this for a little while
now. See
<http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto#Using_run_branches.pl&gt;

cheers

andrew

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Peter Eisentraut
peter_e@gmx.net
In reply to: Andrew Dunstan (#2)
Re: create a git symbolic-ref for REL9_3_STABLE

On 6/3/13 9:43 PM, Andrew Dunstan wrote:

On 06/03/2013 09:30 PM, Peter Eisentraut wrote:

I suppose we'll be branching off 9.3 in a few weeks. That event always
creates a service gap in the build farm and similar services, and a race
in the NLS service to get everything adjusted to the new branch.

The buildfarm has had a mechanism for handling this for a little while
now. See
<http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto#Using_run_branches.pl&gt;

That helps if you run all the branches anyway. But I think my request
is still useful for other places.

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#4amul sul
sul_amul@yahoo.co.in
In reply to: Peter Eisentraut (#1)
Re: create a git symbolic-ref for REL9_3_STABLE

----- Original Message -----

From: Peter Eisentraut <peter_e@gmx.net>

 

I have never actually used symbolic-ref, but after playing with it a
little bit, it seems it should work fine for this purpose.

Comments?

 
+1

its should work fine, because any how we just going to add symbolic-ref which contain  "ref: refs/heads/master".

Just want to ask, what exactly you want, is like this
1. you want to create symbolic -ref as _git symbolic-ref "refs/heads/REL9_3_STABLE" "refs/heads/master"_
2. which will show in _git branch_ as  
 REL9_3_STABLE -> master
 * master
3. Then you want to  checkout to REL9_3_STABLE , and pull the all changes pointing to master?
4. while actual happened then want to create  branch REL9_3_STABLE?

Is this way?

Regards
Amul Sul

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#5Peter Eisentraut
peter_e@gmx.net
In reply to: amul sul (#4)
Re: create a git symbolic-ref for REL9_3_STABLE

On Wed, 2013-06-05 at 08:43 +0800, amul sul wrote:

Just want to ask, what exactly you want, is like this
1. you want to create symbolic -ref as _git symbolic-ref
"refs/heads/REL9_3_STABLE" "refs/heads/master"_
2. which will show in _git branch_ as
REL9_3_STABLE -> master
* master
3. Then you want to checkout to REL9_3_STABLE , and pull the all
changes pointing to master?
4. while actual happened then want to create branch REL9_3_STABLE?

Is this way?

yes

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#6Robert Haas
robertmhaas@gmail.com
In reply to: Peter Eisentraut (#1)
Re: create a git symbolic-ref for REL9_3_STABLE

On Mon, Jun 3, 2013 at 9:30 PM, Peter Eisentraut <peter_e@gmx.net> wrote:

I suppose we'll be branching off 9.3 in a few weeks. That event always
creates a service gap in the build farm and similar services, and a race
in the NLS service to get everything adjusted to the new branch.

It seems to me we could already now create a git symbolic-ref named
REL9_3_STABLE that points to master, get all those services updated for
the new name, and when the actual branching is supposed to happen, we
just remove the symbolic-ref and make a real branch, and everything else
should already be in place.

I have never actually used symbolic-ref, but after playing with it a
little bit, it seems it should work fine for this purpose.

Comments?

I think we should just go ahead and really create the branch. The CF
is supposed to start in a week.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#7Stephen Frost
sfrost@snowman.net
In reply to: Robert Haas (#6)
Re: create a git symbolic-ref for REL9_3_STABLE

* Robert Haas (robertmhaas@gmail.com) wrote:

I think we should just go ahead and really create the branch. The CF
is supposed to start in a week.

+1

Thanks,

Stephen