git submodule, multi-threading the update process for large number of registered submodules

2014-09-02 Thread Jose Paredes
Dear Git community Is there any way to run git submodule update in multiple threads? The use case: --- git submodule update seems to be inefficient when running sequentially on a large .gitmodules file. Assuming a git forest with over 7K gits it takes hours to complete the update

Re: Next Git conference or meeting

2014-09-02 Thread Luca Milanesio
GitTogether has been hosted at Google's for quite some time :-) Last one was in 2011 http://google-opensource.blogspot.co.uk/2011/12/gittogether-2011.html It would be nice to have a joint conference again in the Bay Area. P.S. Possibly you heard of the global crisis in Europe ... that means

Re: [RFC PATCH 2/3] headers: improve header dependencies

2014-09-02 Thread Junio C Hamano
David Aguilar dav...@gmail.com writes: Add missing includes or forward declarations where needed. Sorry, but I am not sure what the missing includes refers to in the above. As far as I know, we never aimed to make gcc -c $header.h happy. I suspect that that is what you are trying to do here?

[PATCH 01/22] refs.c: change ref_transaction_create to do error checking and return status

2014-09-02 Thread Jonathan Nieder
From: Ronnie Sahlberg sahlb...@google.com Date: Wed, 16 Apr 2014 15:26:44 -0700 Do basic error checking in ref_transaction_create() and make it return non-zero on error. Update all callers to check the result of ref_transaction_create(). There are currently no conditions in _create that will

[PATCH 22/22] update-ref --stdin: pass transaction around explicitly

2014-09-02 Thread Jonathan Nieder
This makes it more obvious at a glance where the output of functions parsing the --stdin stream goes. No functional change intended. Signed-off-by: Jonathan Nieder jrnie...@gmail.com Reviewed-by: Michael Haggerty mhag...@alum.mit.edu --- Thanks for reading. builtin/update-ref.c | 27