* remote tracking branches
@ 2009-02-25 17:41 John Dlugosz
2009-02-25 17:53 ` Jay Soffian
0 siblings, 1 reply; 2+ messages in thread
From: John Dlugosz @ 2009-02-25 17:41 UTC (permalink / raw)
To: git
The repository on my machine was apparently originally a simple file
copy from another development machine, or set up manually. That is, was
not done by using the "git clone" command. I have a [remote "pub"] in
the config file with only a url in it, so I can use "pub" when I push
and pull.
The command "git branch -r" shows nothing.
So, there are no remote tracking branches. So what? At first, I think
that this is nothing more than the defaults to use when pulling, to get
everything. But, the example at the very end of Chapter 1 of the user
manual shows:
fetch = +refs/heads/*:refs/remotes/linux-nfs/*
I don't have a refs/remotes directory now. So what does
git pull pub xx
do? The _result_ is just fine, as expected. But if pull calls fetch,
it needs to fetch it to some temporary place first and then merge that,
right?
If I add a suitable line to my config file (changing linux-nfs in the
example to pub to match the remote name), what does that buy me? But
first, is that all I need to do to enable this feature?
I'm guessing that it means I will be able to examine, e.g. using gitk,
what is in pub, to see if there are changes I need and keep apprised of
other's work.
--John
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: remote tracking branches
2009-02-25 17:41 remote tracking branches John Dlugosz
@ 2009-02-25 17:53 ` Jay Soffian
0 siblings, 0 replies; 2+ messages in thread
From: Jay Soffian @ 2009-02-25 17:53 UTC (permalink / raw)
To: John Dlugosz; +Cc: git
On Wed, Feb 25, 2009 at 12:41 PM, John Dlugosz
<JDlugosz@tradestation.com> wrote:
> The repository on my machine was apparently originally a simple file
> copy from another development machine, or set up manually. That is, was
> not done by using the "git clone" command. I have a [remote "pub"] in
> the config file with only a url in it, so I can use "pub" when I push
> and pull.
>
> The command "git branch -r" shows nothing.
>
> So, there are no remote tracking branches. So what? At first, I think
> that this is nothing more than the defaults to use when pulling, to get
> everything. But, the example at the very end of Chapter 1 of the user
> manual shows:
> fetch = +refs/heads/*:refs/remotes/linux-nfs/*
>
> I don't have a refs/remotes directory now. So what does
> git pull pub xx
> do? The _result_ is just fine, as expected. But if pull calls fetch,
> it needs to fetch it to some temporary place first and then merge that,
> right?
FETCH_HEAD is the temporary place.
> If I add a suitable line to my config file (changing linux-nfs in the
> example to pub to match the remote name), what does that buy me? But
> first, is that all I need to do to enable this feature?
Yes.
$ git config remote.pub.fetch "+refs/heads/*:refs/remotes/pub/*"
will command fetch to store what it retrieves under refs/remotes/pub
as well as in FETCH_HEAD.
> I'm guessing that it means I will be able to examine, e.g. using gitk,
> what is in pub, to see if there are changes I need and keep apprised of
> other's work.
Well it also lets you track every branch that is on pub. Otherwise
you're only retrieving whatever HEAD is on the remote. You may also
find it more natural to examine changes before merging them w/remote
tracking branches. e.g.:
$ git fetch
$ git log pub/master..master
Oh, and "git branch -v" can now tell you how far ahead/behind your
local branch is compared to the remote tracking branch.
j.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-25 17:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-25 17:41 remote tracking branches John Dlugosz
2009-02-25 17:53 ` Jay Soffian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).