From: Johannes Schindelin Date: Tue, 9 May 2017 12:54:20 +0000 (+0200) Subject: completion: mark bash script as LF-only X-Git-Tag: v2.13.1~28^2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/cedf4e27de019915a0386cb8f9a4721f2c26e7f7 completion: mark bash script as LF-only Without this change, the completion script does not work, as Bash expects its scripts to have line feeds as end-of-line markers (this is particularly prominent in quoted multi-line strings, where carriage returns would slip into the strings as verbatim characters otherwise). This change is required to let t9902-completion pass when Git's source code is checked out with `core.autocrlf = true`. Signed-off-by: Johannes Schindelin Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/.gitattributes b/contrib/completion/.gitattributes new file mode 100644 index 0000000000..19116944c1 --- /dev/null +++ b/contrib/completion/.gitattributes @@ -0,0 +1 @@ +*.bash eol=lf