==============
.git/config's remote fetch = +refs/heads ...
explained here
Finally,
fetch = +refs/heads/*:refs/remotes/origin/*
That means if you dogit fetch origin
It will actually do:git fetch origin +refs/heads/*:refs/remotes/origin/*
Which means a remote heads/foobar will be local remotes/origin/foobar, and the plus sign means they'll be updated even if they are not fast-forward.answered by felipec
================
http://stackoverflow.com/questions/849308/pull-push-from-multiple-remote-locations/849960#849960
No comments:
Post a Comment