git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Question on case insensitive systems.
@ 2020-03-13 12:05 Paweł Redzyński
  2020-03-13 15:22 ` Torsten Bögershausen
  0 siblings, 1 reply; 2+ messages in thread
From: Paweł Redzyński @ 2020-03-13 12:05 UTC (permalink / raw)
  To: git

Hello,
I noticed that check for filename collision on case insensitive
systems happen only upon clone:
https://github.com/git/git/blob/c522f061d551c9bb8684a7c3859b2ece4499b56b/entry.c#L499
and
https://github.com/git/git/blob/c522f061d551c9bb8684a7c3859b2ece4499b56b/unpack-trees.c#L445

 What if collision exists on some commit that is checked out only after clone?

Is this behavior intentional (eg. for performance reasons)? If its a
bug, can I volunteer to solve it?
Best regards
Paweł

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

* Re: Question on case insensitive systems.
  2020-03-13 12:05 Question on case insensitive systems Paweł Redzyński
@ 2020-03-13 15:22 ` Torsten Bögershausen
  0 siblings, 0 replies; 2+ messages in thread
From: Torsten Bögershausen @ 2020-03-13 15:22 UTC (permalink / raw)
  To: Paweł Redzyński; +Cc: git

On Fri, Mar 13, 2020 at 01:05:46PM +0100, Paweł Redzyński wrote:
> Hello,
> I noticed that check for filename collision on case insensitive
> systems happen only upon clone:
> https://github.com/git/git/blob/c522f061d551c9bb8684a7c3859b2ece4499b56b/entry.c#L499
> and
> https://github.com/git/git/blob/c522f061d551c9bb8684a7c3859b2ece4499b56b/unpack-trees.c#L445
>
>  What if collision exists on some commit that is checked out only after clone?

The OS will overwrite e.g. the content of "FILE.TXT" with "file.txt" if
both exist in the repo.
(Or the other way around)
As a result, "FILE.TXT" would have the contents of "file.txt" which is
typically different, and Git will report "FILE.TXT" as "modified".

>
> Is this behavior intentional (eg. for performance reasons)?

That depends on the definition of "performance".
The Git-developpers have not yet implemented a better solution,
since most of them do such things in their spare time.

As a consequence, we haven't been able to measure the performance
on a computer running Git.

>If its a bug, can I volunteer to solve it?

I would call it a feature, worth to be implemented.
And of course, you are wellcome to solve it.
I (and probably many others) are happy to help with code-reviews
and other tips, hints, suggestions.

> Best regards
> Paweł

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

end of thread, other threads:[~2020-03-13 15:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-13 12:05 Question on case insensitive systems Paweł Redzyński
2020-03-13 15:22 ` Torsten Bögershausen

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).