git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo
@ 2015-12-18 19:55 Yaroslav Halchenko
  2015-12-19 10:40 ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Yaroslav Halchenko @ 2015-12-18 19:55 UTC (permalink / raw)
  To: git

Not sure for what batch operations that file is actually useful, but the
story is that if we have a shared git repo (I know -- might not be as
common of a situation but possible and allowed to happen), then if one
from the shared group commits within that repository, it becomes
impossible for another person to commit.  

git does take care about chmod'ing all the files under .git/objects etc
for --shared operation, but leaves .git/COMMIT_EDITMSG at the
mercy of user's umask.  IMHO correct resolution, if leaving that file
behind is necessary, is to chmod it in the same fashion as any other
internal .git file in --shared mode -- with group write permission.

I have reproduced that behavior with today's version of git as of
2.7.0.rc1.5.gf3adf45.

-- 
Yaroslav O. Halchenko
Center for Open Neuroscience     http://centerforopenneuroscience.org
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834                       Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik        

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo
  2015-12-18 19:55 git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo Yaroslav Halchenko
@ 2015-12-19 10:40 ` Johannes Schindelin
  2015-12-19 12:40   ` SZEDER Gábor
  2015-12-19 15:01   ` Yaroslav Halchenko
  0 siblings, 2 replies; 5+ messages in thread
From: Johannes Schindelin @ 2015-12-19 10:40 UTC (permalink / raw)
  To: Yaroslav Halchenko; +Cc: git

Hi Yaroslav,

On Fri, 18 Dec 2015, Yaroslav Halchenko wrote:

> Not sure for what batch operations that file is actually useful,

None. This file is written when you commit interactively. It is deleted
afterwards, unless aborted in a fatal manner.

So I would try to find out who the heck is working interactively without
finishing their commit message in that shared directory.

Ciao,
Johannes

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo
  2015-12-19 10:40 ` Johannes Schindelin
@ 2015-12-19 12:40   ` SZEDER Gábor
  2015-12-19 18:24     ` Johannes Schindelin
  2015-12-19 15:01   ` Yaroslav Halchenko
  1 sibling, 1 reply; 5+ messages in thread
From: SZEDER Gábor @ 2015-12-19 12:40 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: SZEDER Gábor, Yaroslav Halchenko, git

> On Fri, 18 Dec 2015, Yaroslav Halchenko wrote:
> 
> > Not sure for what batch operations that file is actually useful,
> 
> None. This file is written when you commit interactively. It is deleted
> afterwards, unless aborted in a fatal manner.

Is it?  I have a COMMIT_EDITMSG lying around in just about every git
repository I have and couldn't find any unlink() in builtin/commit.c
or elsewhere that would remove it.  In fact, not deleting it seems to
be the desired bahavior, because many tests in t7502-commit.sh depend
on this file still being present after a successful 'git commit'.

Gábor

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo
  2015-12-19 10:40 ` Johannes Schindelin
  2015-12-19 12:40   ` SZEDER Gábor
@ 2015-12-19 15:01   ` Yaroslav Halchenko
  1 sibling, 0 replies; 5+ messages in thread
From: Yaroslav Halchenko @ 2015-12-19 15:01 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

fwiw that file is created not only by interactive tasks by with a regular commit -m msg as well.

On December 19, 2015 5:40:43 AM EST, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
>Hi Yaroslav,
>
>On Fri, 18 Dec 2015, Yaroslav Halchenko wrote:
>
>> Not sure for what batch operations that file is actually useful,
>
>None. This file is written when you commit interactively. It is deleted
>afterwards, unless aborted in a fatal manner.
>
>So I would try to find out who the heck is working interactively
>without
>finishing their commit message in that shared directory.
>
>Ciao,
>Johannes

-- 
Sent from a phone which beats iPhone.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo
  2015-12-19 12:40   ` SZEDER Gábor
@ 2015-12-19 18:24     ` Johannes Schindelin
  0 siblings, 0 replies; 5+ messages in thread
From: Johannes Schindelin @ 2015-12-19 18:24 UTC (permalink / raw)
  To: SZEDER Gábor; +Cc: Yaroslav Halchenko, git

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]

Hi Gábor,

On Sat, 19 Dec 2015, SZEDER Gábor wrote:

> > On Fri, 18 Dec 2015, Yaroslav Halchenko wrote:
> > 
> > > Not sure for what batch operations that file is actually useful,
> > 
> > None. This file is written when you commit interactively. It is deleted
> > afterwards, unless aborted in a fatal manner.
> 
> Is it?  I have a COMMIT_EDITMSG lying around in just about every git
> repository I have and couldn't find any unlink() in builtin/commit.c
> or elsewhere that would remove it.

Oops. My mistake. Patch sent.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-12-19 18:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-18 19:55 git leaves behind .git/COMMIT_EDITMSG non-shared in --shared non-bare repo Yaroslav Halchenko
2015-12-19 10:40 ` Johannes Schindelin
2015-12-19 12:40   ` SZEDER Gábor
2015-12-19 18:24     ` Johannes Schindelin
2015-12-19 15:01   ` Yaroslav Halchenko

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).