I am setting up a automated build on top of a git repository. I want to automatically build versions from the master branch -- I'm using "git archive" to a build sandbox -- and, depending whether the build succeeds, I want to push a "build branch" to the version that succeeded building.
The idea is that the "build" branch will always be reachable from master, that is, it will always be a fast-forward from "build" to "master", so I'm not creating any objects, not even commit objects, I'm just moving a "ref" from one already-existing to another already-existing commit object.
The reason I'm using git archive is to have the attributes "export-ignore" and "export-subst" properly applied when building.
So, summarizing the question:
Is there a way to update a ref in a remote git repository -- to a commit that is already on the remote side -- without having a clone of it?
daniel