devops
Simple Usage
$ git config --global core.autocrlf true
# Configure Git to ensure line endings in files you checkout are correct for Windows.
# For compatibility, line endings are converted to Unix style when you commit files.$ git config --global core.autocrlf input
# Configure Git to ensure line endings in files you checkout are correct for OS X/Linux, when commit files, windows style end of line will be changed to Linux style (lf).Detail
Last updated