0


vscode git拉下来的代码CRLF自动转LF

场景:从远程仓库拉取的代码,因为设置原因,要求使用LF换行符;

但拉取后代码因为git-bash默认或是vscode默认原因,导致使用的是CRLF换行符,导致运行项目报错

修改后实现拉下代码自动转lf,且只是本地转换
1、创建.editorconfig ,放在项目根路径下

# vscode 请安装插件:CTRL+SHIFT+X 搜索 EditorConfig 并安装

# http://editorconfig.org

root = true

 

[*]

charset = utf-8

indent_style = space

indent_size = 2

end_of_line = lf

insert_final_newline = true

trim_trailing_whitespace = true

 

[*.md]

insert_final_newline = false

trim_trailing_whitespace = false

2、安装插件EditorConfig
3、在.gitignore文件中加一行代码,忽略提交

.editorconfig
标签: vscode git ide

本文转载自: https://blog.csdn.net/weixin_44738844/article/details/133770672
版权归原作者 荔枝要理智啊 所有, 如有侵权,请联系我们删除。

“vscode git拉下来的代码CRLF自动转LF”的评论:

还没有评论