How do you change core.autocrlf when using SmartGit?
If you have problems with terminals, you could also edit the file $HOME/.gitconfig on Linux platforms or C:\Users\%USERNAME%\.gitconfig on Windows, and add the following lines to it:
[core]
autocrlf = false
Also you can set the default EOL with:
[core]
eol = lf
SmartGit/Hg uses the command line Git which is configured in the Preferences. Both, command line Git and SmartGit/Hg will honor the global core.autocrlf
configuration from your .gitconfig
file.