From: Bradley Wagner <bradley.wagner@hannonhill.com>
To: geoffrey.russell@gmail.com
Cc: git@vger.kernel.org
Subject: Re: git pull question
Date: Sun, 25 Jul 2010 23:43:31 -0400 [thread overview]
Message-ID: <AANLkTi=wXGBMUekUhtHS1KCOhjgac3ET8rmSCwUPHzQ3@mail.gmail.com> (raw)
In-Reply-To: <AANLkTimHg2wtNj2BmJKJfoisoqNEExC=jNU5wB95Bsre@mail.gmail.com>
> Hi,
>
> Assuming I already have a branch called brA
>
> $ git checkout master
> $ git pull origin refs/heads/brA:brA
>
> The pull here seems to update both the current branch as well as brA?
> Is this intentional?
I believe this is intentional.
A git pull always pulls into (at least) the currently checked out
branch, in your case "master". By adding the <dst> param after the
colon in the <refspec> you're saying to go ahead and fast-forward
merge the local branch called "brA" if possible.
This is almost equivalent to saying:
git checkout brA
git pull origin brA
git checkout master
git pull origin brA
assuming everything can be fast-forward merged.
Read the the portion of git-pull man entry regarding the <refspec> for
a more thorough explanation:
http://www.kernel.org/pub/software/scm/git/docs/git-pull.html
However, I'm not entirely clear myself on the meaning of this note in
the documentation:
Note
You never do your own development on branches that appear on the right
hand side of a <refspec> colon on Pull: lines; they are to be updated
by git fetch. If you intend to do development derived from a remote
branch B, have a Pull: line to track it (i.e. Pull: B:remote-B), and
have a separate branch my-B to do your development on top of it. The
latter is created by git branch my-B remote-B (or its equivalent git
checkout -b my-B remote-B). Run git fetch to keep track of the
progress of the remote side, and when you see something new on the
remote branch, merge it into your development branch with git pull .
remote-B, while you are on my-B branch.
>
> Cheers,
> Geoff.
>
> PS. git is at 1.6.2.3
>
> --
> 6 Fifth Ave,
> St Morris, S.A. 5068
> Australia
> Ph: 041 8805 184 / 08 8332 5069
> http://perfidy.com.au
> --
> 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
next prev parent reply other threads:[~2010-07-26 3:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-26 1:56 git pull question Geoff Russell
2010-07-26 3:43 ` Bradley Wagner [this message]
2010-07-26 3:51 ` Geoff Russell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='AANLkTi=wXGBMUekUhtHS1KCOhjgac3ET8rmSCwUPHzQ3@mail.gmail.com' \
--to=bradley.wagner@hannonhill.com \
--cc=geoffrey.russell@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).