Ah that part.
It means that
$ git pull --rebase origin master
means the same as:
$ git pull --rebase origin master:
(note extra colon at the end)
But not as:
$ git pull --rebase origin master:foo
It means that, when you give a refspec without a colon, it is the same
as the refspec with the colon and without the right side.
--
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