Re: fetching from an hg remote fails with bare git repositories

2015-08-04 Thread Stefan Beller
On Tue, Aug 4, 2015 at 10:45 AM, Taylor Braun-Jones tay...@braun-jones.org wrote: Fetching from an hg remote fails with bare git repositories. Non-bare repositories work fine. Steps to reproduce: mkdir /tmp/hgrepo cd /tmp/hgrepo hg init echo foo foo.txt hg add foo.txt hg commit -m add

Re: [PATCH] git_open_noatime: return with errno=0 on success

2015-08-04 Thread Junio C Hamano
Clemens Buchacher clemens.buchac...@intel.com writes: diff --git a/sha1_file.c b/sha1_file.c index 77cd81d..62b7ad6 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1453,6 +1453,7 @@ int git_open_noatime(const char *name) static int sha1_file_open_flag = O_NOATIME; for (;;) {

Pro Git - Missing Diagram Image

2015-08-04 Thread Robin Forder
Hi Git Community, In Pro Git, 1.1 Getting Started - About Version Control, an image is missing. It is the one for the centralized version control diagram. http://git-scm.com/book/en/v2/Getting-Started-About-Version-Control Yours, Robin. Robin Forder Senior Technical Author

[PATCH 2/4] submodule: implement `module_name` as a builtin helper

2015-08-04 Thread Stefan Beller
The goal of this series being rewriting `git submodule update`, we don't want to call out to the shell script for config lookups. So reimplement the lookup of the submodule name in C. Signed-off-by: Stefan Beller sbel...@google.com --- When I started to implement git submodule add in the

[PATCH 1/4] submodule: implement `module_list` as a builtin helper

2015-08-04 Thread Stefan Beller
Most of the submodule operations work on a set of submodules. Calculating and using this set is usually done via: module_list $@ | { while read mode sha1 stage sm_path do # the actual operation done } Currently the function

Re: [PATCH 2/4] submodule: implement `module_name` as a builtin helper

2015-08-04 Thread Eric Sunshine
On Tue, Aug 4, 2015 at 8:04 PM, Stefan Beller sbel...@google.com wrote: The goal of this series being rewriting `git submodule update`, we don't want to call out to the shell script for config lookups. So reimplement the lookup of the submodule name in C. Signed-off-by: Stefan Beller

<    1   2