我正在尝试在 Git 中进行提交,但收到以下错误:
$ git commit -m "Changed model name from Employee to Person for abstraction"
*
* You have some suspicious patch lines:
*
* In app/helpers/people_helper.rb
* trailing whitespace (line 28)
app/helpers/people_helper.rb:28:
* trailing whitespace (line 44)
app/helpers/people_helper.rb:44:
美好的。我将删除空格。唯一的问题?那些行不存在。
$ cat app/helpers/people_helper.rb
module PeopleHelper
end
$
该文件只有两行长。第 28 行和第 44 行不能有空格。
是什么赋予了?
我使用的是 Git 1.5.4 版,除了默认安装的钩子外,没有钩子。