warning: in the working copy of ‘App.vue‘, LF will be replaced by CRLF the next time Git touches it

这篇具有很好参考价值的文章主要介绍了warning: in the working copy of ‘App.vue‘, LF will be replaced by CRLF the next time Git touches it。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

问题

git add .

一大串的warning

warning: in the working copy of ‘App.vue‘, LF will be replaced by CRLF the next time Git touches it,微信小程序,vue.js,git,前端,Powered by 金山文档
warning: in the working copy of 'App.vue', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'pages.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'pages/cart/cart.vue', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'pages/cate/cate.vue', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'pages/home/home.vue', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'pages/my/my.vue', LF will be replaced by CRLF the next time Git touches it

解决方案

解释:

CR/LF是不同操作系统上使用的换行符:

  • CR(CarriageReturn回车'\r'):回到一行的开头,ASCII代码是13

  • LF(LineFeed换行'\n'):另起一行,ASCII代码是10

1、windows用户

Git 可以在你提交时自动地把回车(CR)和换行(LF)转换成换行(LF),而在检出代码时把换行(LF)转换成回车(CR)和换行(LF)。因为git 的 Windows 客户端基本都会默认设置 core.autocrlf=true

git config --global core.autocrlf true

提交时转换为LF,检出时转换为CR、LF

warning: in the working copy of ‘App.vue‘, LF will be replaced by CRLF the next time Git touches it,微信小程序,vue.js,git,前端,Powered by 金山文档

2、linux/mac用户

Git 在检出文件时不需要进行自动的转换。然而当一个以回车(CR)和换行(LF)作为行结束符的文件不小心被引入时,你肯定想让 Git 修正。 所以,你可以把 core.autocrlf 设置成 input 来告诉 Git 在提交时把回车和换行转换成换行,检出时不转换:(这样在 Windows 上的检出文件中会保留回车和换行,而在 Mac 和 Linux 上,以及版本库中会保留换行。)Linux 最好不要设置 core.autocrlf,因为这个配置算是为 Windows 平台定制;

#提交时转换为LF,检出时不转换

$ git config --global core.autocrlf input文章来源地址https://www.toymoban.com/news/detail-634416.html

到了这里,关于warning: in the working copy of ‘App.vue‘, LF will be replaced by CRLF the next time Git touches it的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包