Re: Git conversion status

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Magnus Hagander <magnus(at)hagander(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: Git conversion status
Date: 2010-09-22 20:04:49
Message-ID: 1285185347-sup-3183@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Excerpts from Robert Haas's message of mar sep 21 13:43:28 -0400 2010:

> Oops. I left out a step. Fixed.

Hmm, it still doesn't work. I can pull into the normal clone and it
works, but when I run a "git pull" in one of the local clones, it says
it's up to date even when there are commits that I know should be pulled
in.

For example:

$ cd postgresql/
$ git fetch
remote: Counting objects: 219, done.
remote: Compressing objects: 100% (88/88), done.
remote: Total 89 (delta 77), reused 0 (delta 0)
Unpacking objects: 100% (89/89), done.
>From ssh://gitmaster.postgresql.org/postgresql
6b4453f..da907fd REL7_4_STABLE -> origin/REL7_4_STABLE
92458c2..da49d16 REL8_0_STABLE -> origin/REL8_0_STABLE
3fb50a7..706a580 REL8_1_STABLE -> origin/REL8_1_STABLE
adbe80f..c206794 REL8_2_STABLE -> origin/REL8_2_STABLE
c39a381..60591cd REL8_3_STABLE -> origin/REL8_3_STABLE
35b2f93..2792c82 REL8_4_STABLE -> origin/REL8_4_STABLE
bbf84ac..f23bc1e REL9_0_STABLE -> origin/REL9_0_STABLE
726f9dd..6c137da master -> origin/master

$ cd ../REL9_0_STABLE
$ git pull
Current branch REL9_0_STABLE is up to date.

But I know this is wrong:

$ git log -1
commit a6923594114601b4aaaf0cfd82eb5088af837664
Author: Magnus Hagander <magnus(at)hagander(dot)net>
Date: Wed Sep 22 12:57:06 2010 +0200

Convert cvsignore to gitignore, and add .gitignore for build targets.

$ cd ../postgresql
$ git checkout REL9_0_STABLE
Checking out files: 100% (2415/2415), done.
Switched to branch 'REL9_0_STABLE'
Your branch is behind 'origin/REL9_0_STABLE' by 2 commits, and can be fast-forwarded.
$ git pull
[ lotsa output ]

$ git log -1
commit f23bc1e8a42cab50c204bbab837f95cbc2353311
Author: Magnus Hagander <magnus(at)hagander(dot)net>
Date: Wed Sep 22 21:49:07 2010 +0200

Add gitignore files for ecpg regression tests.

Backpatch to 8.2 as that's how far the structure looks the same.

As far as I can see, I need to go to the master clone, run a checkout
and pull on each branch, and *then* a pull on the local clone updates to
the latest head on that branch. It is not enough to pull when the
master branch is checked out.

--
Álvaro Herrera <alvherre(at)commandprompt(dot)com>
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thom Brown 2010-09-22 20:05:36 Re: Configuring synchronous bikeshedding
Previous Message Magnus Hagander 2010-09-22 19:58:51 Re: .gitignore files, take two