Re: [PATCH] Respect crlf attribute even if core.autocrlf has not been set
From: Dmitry Potapov <hidden>
Date: 2016-06-15 22:45:00
On Wed, Jul 23, 2008 at 10:07:43AM -0700, Junio C Hamano wrote:
Johannes Schindelin [off-list ref] writes:quoted
However, if you want to avoid CRs to _enter_ the repository, when you have a lot of binary files tracked, you _do_ want to force all repositories to crlf=input.If you are on a sane system, you do not even want to pay the price of conversion.
If you do not have CRLF then there will be no conversion, so you pay only
the price of check. The relative cost of that check obviously depends on
what other operations are. I believe that the worst case for this check
will be when there is no other operations, just re-reading files, so I
did:
# touch all files to force git re-read them...
git ls-files | xargs touch
time git status
Here is the average based on 3 attempts:
0.232s with autocrlf=false
0.265s with autocrlf=input (14% increase)
Of course, without touching files, git-status will take the same time in
both cases (about 0.026s in my testing), and touching all files not very
interesting from the practical point of view.
So, I decided to do something more practical, like applying 100 patches.
Here are my results:
false input
------ -------
7.409s 7.603s
7.592s 7.239s
7.617s 7.402s
------ -------
Average: 7.539s 7.415s
autocrlf=input turned out to be even slightly faster, but the difference
is not statistically significant.
So, though it is obvious that autocrlf=input clearly adds some overhead,
I believe it is negligable in most practical cases as there are much
more expensive operations. And you can always turn autocrlf off, if you
are sure that you never have files with the wrong line ending.
Only people on systems with CRLF line endings should pay the price (because your aim is to convert on such systems).
Unfortunately, it is not so clearly cut. Some people may work on Unix but share files with Windows using network shares or emails.
Are we throwing that out of the window when the project decides to use gitattributes?
I am not sure that I understand your question. In any case, Dscho's patch did not change the default, so it did not penalize anyone except explicitly asked about that by setting crlf on some files. I would like also to notice that setting crlf on some files (in contrast to unsetting it!) is rarely necessary in practice if all users have sane settings for autocrlf.
How about setting autocrlf automatically on mingw/msys/cygwin versions, perhaps via templates or a patch to init-db? Would that, combined with user education, be a viable alternative?
Perhaps, it is good compromise for now, considering that Windows users have most troubles with that... I really don't mind seeing 'input' as default on other platforms, but I won't insist on that. Dmitry