In my repository, I have several shell scripts that run in the cygwin console on Windows machines. my problem is that every time I update these files, git automatically converts them to the end of the CRLF line, and I have to manually open them, convert to unix, save em, commit them, repeat them when updating.
now if i do
git config --global core.autocrlf false
then git will stop trying to accept what I want by converting line endings and blindly copy them, fix it?
there is a way that I can configure this configuration parameter to all users of my repository or each user must set this variable himself
source share