Actually it is the same "problem" as when you want to work on the
non-HEAD remote branch.
Currently I do (with current git):
git clone git://...
git checkout -b ${branch} origin/${branch}
git config branch.${branch}.merge refs/heads/${branch}
then they could update this with just:
git pull
It would be nice if:
git clone -b ${branch} git://...
would be equivalent of the above three commands.
Santi
-
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