Thread (1 message) 1 message, 1 author, 2016-06-15

Re: git fetch documentation problem or bug

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:54:58

Angelo Borsotti [off-list ref] writes:
git fetch <repository> <refspec> does not create the remote refs in
the current (local)
repository...
However, if a git fetch origin is executed, the refs are properly created:
Working as designed and documented.

 $ git fetch origin master

is giving the refspec "master" from the command line which is a
short-hand for "refs/heads/master".

When you run

 $ git fetch origin

configured refspec is looked up from your config (because you didn't
give any from the command line).  The default refspec in your config
is likely to be "refs/heads/*:refs/remotes/origin/*".

The former, "refs/heads/master" refspec, tells Git not to update the
remote tracking branch.  The latter has colon and right-hand-side of
the colon tells Git what to update with what was fetched.

It would hlep to read up on refspec by running "git fetch --help"
and looking for a string "colon".
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help