Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Last active September 26, 2022 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziadoz/94cdf938ff5d6af8268b858dccda144c to your computer and use it in GitHub Desktop.
Save ziadoz/94cdf938ff5d6af8268b858dccda144c to your computer and use it in GitHub Desktop.
Prevent Git Managing CSV Line Endings
# Prevent Git managing line endings of CSV files, otherwise it changes CRLF to LF on commit and checkout.
# This is useful if you're working with CSV files that come from legacy systems and have differing line endings.
#
# You can see view how Git manages line endings with this command: git ls-files --eol | grep .csv
#
# @see: https://git-scm.com/docs/gitattributes
# @see: https://stackoverflow.com/questions/17628305/windows-git-warning-lf-will-be-replaced-by-crlf-is-that-warning-tail-backwar
# @see: https://stackoverflow.com/questions/42667996/enforce-core-autocrlf-input-through-gitattributes
# @see: https://stackoverflow.com/questions/20496084/git-status-ignore-line-endings-identical-files-windows-linux-environment
# @see: https://stackoverflow.com/questions/21822650/disable-git-eol-conversions
* text=auto
*.csv text=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment