Re: Creating new remote branch in git?

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Robert Haas <robertmhaas(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Greg Smith <greg(at)2ndquadrant(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Creating new remote branch in git?
Date: 2011-06-13 20:08:18
Message-ID: 4DF66E32.7040905@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 06/13/2011 02:26 PM, Bruce Momjian wrote:
> I found the cause. When I added 'github' to ~/.gitconfig a few months
> ago, I copied this line from .git/config:
>
> fetch = +refs/heads/*:refs/remotes/origin/*
>
> If this line is in ~/.gitconfig for both 'origin' and 'github', git
> cannot create .git/config entries.
>
> Attached is my corrected ~/.gitconfig file. I now use only the 'url'
> branch entries, which is all that is needed.
>
[...]
> [remote "origin"]
> url = ssh://git(at)gitmaster(dot)postgresql(dot)org/postgresql.git
> # Do not add the next line or .git/config is not updated.
> # fetch = +refs/heads/*:refs/remotes/origin/*
> [remote "github"]
> url = git(at)github(dot)com:bmomjian/postgres.git

Is putting remotes in your ~/.gitconfig good practice? I certainly
don't have any in mine.

The one for "origin" seems a particularly bad idea to me, although I
don't claim that my git-fu is of the highest.

> pager = "less -x4 -E"

I experimented with this setting quite a bit before getting it the way I
wanted. You might find this works better:

pager = less -+$LESS -FRSX

cheers

andrew

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message richhguard-monotone 2011-06-13 20:10:17 Re: PATCH: CreateComments: use explicit indexing for ``values''
Previous Message Noah Misch 2011-06-13 20:04:29 Re: Make relation_openrv atomic wrt DDL