Last night I was going through old mail-logs and found this , which I think is still needed. Does anybody see anything wrong with them? Jason Gunthorpe <jgunthorpe@xxxxxxxxxxxxxxxxxxxx> writes: > Prevents git clone from complaining on shared repositories > > Initialized empty Git repository in /tmp/src/.git/ > cpio: objects/pack/pack-601efa4cfe63e081c0591b463549aeba3f7c6164.keep: Cannot open: Permission denied > 3376 blocks > > Signed-off-by: Jason Gunthorpe <jgunthorpe@xxxxxxxxxxxxxxxxxxxx> > --- > > I'm uncertain if the keep files should be sticking around for so long, > commit b8077709 makes it sounds like they are shorted lived lock > files. In the case I have the keep file contains: > > fetch-pack 20810 on bertha1 > > But, I don't see anything in fetch-pack to erase the keep file.. In > any event making the file the same permissions as everything else > can't hurt. > > index-pack.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/index-pack.c b/index-pack.c > index 9c0c278..eb19e98 100644 > --- a/index-pack.c > +++ b/index-pack.c > @@ -707,7 +707,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name, > get_object_directory(), sha1_to_hex(sha1)); > keep_name = name; > } > - keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0600); > + keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0666); > if (keep_fd < 0) { > if (errno != EEXIST) > die("cannot write keep file"); > -- > 1.5.4.2 > > -- > To unsubscribe from this list: send the line "unsubscribe git" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html