Re: Terminology question about remote branches.

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Theodore Tso
Date: Saturday, August 4, 2007 - 3:56 pm

On Sat, Aug 04, 2007 at 08:00:00PM +0200, David Kastrup wrote:

... or you can you use "git remote" to create the remote tracking
branches.  The important thing to realize is that 99% of what "git
remote" does is purely by editing the config file.  (The last 1% is
running "git fetch" if you specify the -f option.)  So understanding
what gets placed in the .git/config file after doing an initial clone
from a URL for a pre-1.5 git and what gets placed in .git/config file
and how the branches are set up post 1.5 is key to understanding what
is going on.


Be careful, not really.  A git-clone -l will set up a new repository
where origin/master is your original repository, i.e.:

[remote "origin"]
        url = /usr/projects/e2fsprogs/base
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master

In contrast, if you had done a git-clone of remote repository, you
might see something like this instead:

[remote "origin"]
        url = git://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master

In contrast, if you are using git 1.4, after a clone, "origin" and
"master" are by default set to the "master" branch in the source
repository, and in git 1.4 (and in git 1.5 if you don't have any of
the above configuration opions in your .git/config file), the "origin"
branch is magical and works like the remote tracking branch of
origin/master of git 1.5 for the purposes of "git fetch", and then the
implied merge done by "git pull" merges from "origin" branch to the
"master" branch.


Well, there really is no such thing as a "1.4 repository".  The only
real difference is the default configuration which is dropped into the
.config file when you do a "git clone", and whether the head of the
master branch created after the "git clone" is called "origin", with
some magic special casing so that works like a remote tracking branch
of the remote repo's master branch, or whether it is called
"origin/master", with explicit configuration rules in .git/config.

The real issue is that a "1.4 repository" (that is a repository
created by "git clone" from git 1.4 and where the config file hasn't
been updated either by hand-editing the config file or by use of "git
config" or "git remote" to have remote branches) doesn't have any
remote branches, and git branch -track only has significance if you
are creating a new (local) branch from a remote tracking branch.

Regards,

						- Ted
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Terminology question about remote branches., David Kastrup, (Sat Aug 4, 3:55 am)
Re: Terminology question about remote branches., Jeff King, (Sat Aug 4, 5:02 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 5:36 am)
Re: Terminology question about remote branches., Lars Hjemli, (Sat Aug 4, 6:07 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 6:38 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 7:01 am)
Re: Terminology question about remote branches., Lars Hjemli, (Sat Aug 4, 7:03 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 7:11 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 7:25 am)
Re: Terminology question about remote branches., Lars Hjemli, (Sat Aug 4, 7:35 am)
Re: Terminology question about remote branches., Julian Phillips, (Sat Aug 4, 7:50 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 8:09 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 8:22 am)
Re: Terminology question about remote branches., Lars Hjemli, (Sat Aug 4, 8:48 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 10:00 am)
Re: Terminology question about remote branches., Julian Phillips, (Sat Aug 4, 10:19 am)
Re: Terminology question about remote branches., David Kastrup, (Sat Aug 4, 11:00 am)
Re: Terminology question about remote branches., Theodore Tso, (Sat Aug 4, 3:56 pm)
Re: Terminology question about remote branches., David Kastrup, (Sun Aug 5, 12:06 am)
Re: Terminology question about remote branches., Junio C Hamano, (Sun Aug 5, 12:31 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 2:21 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 2:24 am)
Re: Terminology question about remote branches., David Kastrup, (Sun Aug 5, 2:29 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 2:32 am)
Re: Terminology question about remote branches., David Kastrup, (Sun Aug 5, 2:44 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 2:46 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 3:05 am)
Re: Terminology question about remote branches., Steffen Prohaska, (Sun Aug 5, 3:07 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 3:10 am)
Re: Terminology question about remote branches., Steffen Prohaska, (Sun Aug 5, 3:56 am)
Re: Terminology question about remote branches., Jeff King, (Sun Aug 5, 4:02 am)
Re: Terminology question about remote branches., Julian Phillips, (Sun Aug 5, 7:23 am)
Re: Terminology question about remote branches., David Kastrup, (Sun Aug 5, 8:09 am)
Re: Terminology question about remote branches., Julian Phillips, (Sun Aug 5, 8:24 am)