Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 1 down vote accepted

You will already have a clone of it where you are building. A simple push of HEAD:master is all you need. Also consider tagging instead to mark your successful builds.

UPDATE:

Git is something that will always need to send objects when you push something to a remote. If you don't have the objects you can't push. That said, you could automate via a drop to a shared dir the SHA1 of the commit and have a process on that other machine with a clone of the repo push that reference into the branch.

Hopefully there are some low level commands that can do this directly, or a way to trick it, but I haven't seen that yet.

share|improve this answer
As I said very clearly on the post, I don't have a clone. I'm using git archive, so I can have the attributes "export-ignore" and "export-subst" applied. – Daniel Ruoso Jun 3 '11 at 15:57
why are you not using a regular ignore? You should be compiling from a working directory, perhaps apply smudge/clean scripts and all the other functionality you get out of having a working dir. You can still export from there to get artifacts for deployment. – Adam Dymitruk Jun 3 '11 at 16:11
Please read the original question. If you actually read the question, you will understand that what I want is precisely to avoid having both the clone and the export. I want to build from the archive, not from the working directory. – Daniel Ruoso Jun 3 '11 at 17:45
updating. Take a look now. – Adam Dymitruk Jun 3 '11 at 21:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.