好吧,由于缺乏知识,这是我自己的错,但是我的github存储库搞得一团糟。我需要代码才能在Linux上运行,但是直接在github.com上从Windows机器进行了一些编辑,看起来行结尾现在是Windows样式。 我尝试添加.gitattributes,但这没有用,当我git克隆它仍然来到我的Linux机器与Windows行结束。使用dos2unix有效,但显然这不是一个合适的解决方案。
如何编辑存储库以使其准备好Linux,我是一个git noob,所以需要一步一步。
答案 0 :(得分:0)
完整的答案是:
git config --global core.autocrlf true
以任意方式修改somefile.py,然后:
git add somefile.py
git commit
git push
现在GitHub有正确的行结尾。