Re: Trying to Update All Heads of a Repository
From: Jon Loeliger <hidden>
Date: 2016-06-15 22:42:10
Junio says:
My "pu" is somewhat special; it is rewound and rebased all the time,
so merging with its older self would conflict with it. That's why
my example remotes/origin file has '+' in front of it. It tells
git-fetch that the other side _might_ rebase and fetch would not
result in a fast-forward merge when that happens.
So, from the git-pull man page:
For "git push", the local ref that matches <src> is used to fast
forward the remote ref that matches <dst>. If the optional plus + is
used, the remote ref is updated even if it does not result in a fast
forward update.
Ah-ha! Wait. But here's the conceptual missing piece: When might I
_know_ I have the situation where a fast-forward update might not
happen? And as a remote puller, that would be "never" -- unless I know
something about the nature of the remote end. That is, like you said,
"pu" is subject to wild fluctuation and non-linear behavior. But any
random puller can't know that a priori. So far, that is out-of-band
information about a branch that needs to be "available".
I think my previous "Ah ha!" paragraph should be massaged and added to
the git-pull man page as part of the above (man page) quoted material.
That's one.
Junio explained: Alternatively, with your original remotes/origin
file, you should be able to do:
$ git checkout master
$ git fetch origin master:origin +pu:pu maint:maint
$ git pull . origin
What an excellent example for the git-pull man page! That's two.
Junio also exampled:
My "guinea pig" repository has this in $GIT_DIR/remotes/origin:
URL: git://git.kernel.org/pub/scm/git/git.git
Pull: master:origin
Pull: +pu:pu
Pull: maint:maint
This means that my "master" is copied to the "origin" branch of
the guinea pig repository and "pu" and "maint" are copies of my
"pu" and "maint" branches. You never do your own development on
branches that appear on the right hand side of colon on "Pull"
lines (i.e. origin, pu and maint) in this repository. They are
to be updated by git-fetch.
The notion that multiple pull lines can be placed in the .git/remotes
file should be added to the git-pull man page. That's three.
Furthermore, there is one very important guideline you just
stated in that paragraph:
You never do your own development on branches that appear on the
right hand side of colon on "Pull" lines in a repository. They are
to be updated by git-fetch.
And it might bear stating the corollary:
The reason for a "Pull: master:origin" line is to side-step
the above maxim and provide a unique place where the local
developer can do her own work.
I'll consider that concept item four for the git-pull man page . :-)
Sorry, my "pu" does not fast forward. The branch is to showcase what I've received or picked up from the list, and what changes are under consideration for inclusion.
Heh. I understand it now! :-) No problem. And finally:
The "hold/draw" topic branch (thanks for your ASCII art) is fully merged into my "master"; in fact it's head is the master branch head.
That's five-ish. I'm on deck for some git-pull man page and drawing documentation patches. Coming up Real Soon Now. Thanks for the explanations! jdl