操作系统平台协同开发时 GIT 的注意事项: 不同操作系统中的换行符(不要使用git的换行符

PS: 最好的解决方案是执行以下步骤:(比如,有一个 git 库叫做 mygitrepo

1)增加 .gitattribute 文件

在mygitrepo 下建立一个 .gitattributes 文件,在其中输入 

    * text eol=lf 

,详见https://help.github.com/articles/dealing-with-line-endings#platform-all

2)通过你的客户端命令行修改换行设置,输入

    git config --global core.autocrlf false

    git config --global core.safecrlf true

3)通过你的客户端命令行输入 

    git add .gitattributes

    git commit .gitattributes -m "commit .gitattributes"

4)项目组统一编辑器和 IDE 的换行符,推荐 UNIX 风格的 LF

其他相关资料链接:http://blog.sina.com.cn/s/blog_64e1046201019yuh.html

你可能感兴趣的:(操作系统平台协同开发时 GIT 的注意事项: 不同操作系统中的换行符(不要使用git的换行符)