微妙な挙動

git add したら以下な出力が。

$ git add .
warning: LF will be replaced by CRLF in Gemfile.
The file will have its original line endings in your working directory.

これは一体何でしょ。
ググッてみるに Github な article に以下な記述発見。

Git will automatically manage line endings for you if you set the core.autocrlf option. On OSX, you usually want to use input for this setting.

Dealing with line endings より引用
つーことで設定を以下に変更しておくことに。どうなるやら。

$ git config --global core.autocrlf input