且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何更改行结束设置

更新时间:2022-10-14 23:13:46

The normal way to control this is with git config

For example

git config --global core.autocrlf true

For details, scroll down in this link to Pro Git to the section named "core.autocrlf"


If you want to know what file this is saved in, you can run the command:

git config --global --edit

and the git global config file should open in a text editor, and you can see where that file was loaded from.

相关阅读

技术问答最新文章