]> granicus.if.org Git - php/commit
Convert CRLF line endings to LF
authorPeter Kokot <peterkokot@gmail.com>
Tue, 7 May 2019 02:34:37 +0000 (04:34 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Tue, 7 May 2019 02:34:37 +0000 (04:34 +0200)
commitd153fbc5a935a73e95bfb1c13f82208c4983aa2f
treec1514417dd0e2b5289aa91b61697ac7e5952c072
parent36a7d9fca4039624c13902230cd33c3d535b8642
Convert CRLF line endings to LF

This patch simplifies line endings tracked in the Git repository and
syncs them to all include the LF style instead of the CRLF files.

Newline characters:
- LF (\n) (*nix and Mac)
- CRLF (\r\n) (Windows)
- CR (\r) (old Mac, obsolete)

To see which line endings are in the index and in the working copy the
following command can be used:
`git ls-files --eol`

Git additionally provides `.gitattributes` file to specify if some files
need to have specific line endings on all platforms (either CRLF or LF).

Changed files shouldn't cause issues on modern Windows platforms because
also Git can do output conversion is core.autocrlf=true is set on
Windows and use CRLF newlines in all files in the working tree.

Unless CRLF files are tracked specifically, Git by default tracks all
files in the index using LF newlines.
ext/spl/tests/bug77298.phpt