欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Studio完美解决 you are about to commit crlf line separators,warning: CRLF will be replaced by LF

程序员文章站 2022-04-14 09:30:57
在使用git的时候你可能会遇到 you are about to commit crlf line separators... 或者 warning: crlf will be replac...

在使用git的时候你可能会遇到

you are about to commit crlf line separators...

或者

warning: crlf will be replaced by lf in...

关于crlf和lf的问题就不赘述了,关键是发现了一个简单粗暴的解决办法!!

解决办法

出现这个问题之后文件是commit不了的,打开文件,然后在右下角会有编码utf-8什么的,对,没错,直接点击crlf,然后选择lf即可,window反之选crlf

Android Studio完美解决 you are about to commit crlf line separators,warning: CRLF will be replaced by LF

然后像正常一样commit即可。

如果,如果commit的时候出现
on branch master
your branch is up-to-date with 'origin/master'.
nothing to commit, working tree clean

意思是跟之前的版本一样,也很简单,随便改一下文件内容,commit即可。