ERROR Message
warning: LF will be replaced by CRLF in OOO
The file will have its original line endings in your working directory
#global set
#local set 순서
# windows
git config --global core.autocrlf true
git config core.autocrlf true
# ubuntu / mac
git config --global core.autocrlf input
git config core.autocrlf input
# disable
git config --global core.autocrlf false
git config core.autocrlf false
#
git config --global core.eol native
git config core.eol native
stackoverflow.com
0 댓글