Re: Creating new remote branch in git?

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: Bruce Momjian <bruce@momjian.us>
Cc: Greg Smith <greg@2ndQuadrant.com>, pgsql-hackers@postgresql.org
Date: 2011-06-12T23:20:56Z
Lists: pgsql-hackers
Bruce Momjian <bruce@momjian.us> writes:
> Did the system create the .git/config '[branch "REL9_1_STABLE"]' section
> for you or did you create it manually?

git created them for me.  I did no config hacking whatever, but now
I have:

[branch "REL9_1_STABLE"]
	remote = origin
	merge = refs/heads/REL9_1_STABLE
	rebase = true

which exactly parallels the pre-existing entries for the other branches.

One point that might affect this is that in ~/.gitconfig I have

[branch]
	autosetuprebase = always

which is as per the setup recommendations on the wiki page.

			regards, tom lane