Am 12.07.25 um 11:45 schrieb Jason Cho: > ```MINGW64 /tmp/summer-temp/dbeaver/docs ((e4219ccb38...)) > $ git log -1 --patch license_header.txt > commit b5121d4a6e8f3f21079920180b0fb14ada6d3349 > Author: serge-rider <serge@xxxxxxxxx> > Date: Thu Jan 10 21:56:55 2019 +0300 > > License header update (2019) > > diff --git a/docs/license_header.txt b/docs/license_header.txt > index 86de505a18..d75b48e98e 100644 > --- a/docs/license_header.txt > +++ b/docs/license_header.txt > @@ -1,5 +1,5 @@ > DBeaver - Universal Database Manager > - Copyright (C) 2010-2018 Serge Rider (serge@xxxxxxxxx) > + Copyright (C) 2010-2019 Serge Rider (serge@xxxxxxxxx)^M > > Licensed under the Apache License, Version 2.0 (the "License"); > you may not use this file except in compliance with the License. > Since you posted `git diff` output, may I ask if your concern is actually the ^M in the diff output, which you intend to fix with automatic CRLF-to-LF conversion? In that case, the simpler solution is to set core.whitespace such that it includes 'cr-at-eol' to convince `git diff` not to mark the CR in the CRLF pair as a trailing whitespace error. -- Hannes