git add -i: handle CR/LF line endings in the interactive input

As of Git for Windows v2.27.0, there is an option to use Windows'
newly-introduced Pseudo Console support. When running an interactive add
operation with this support enabled, Git will receive CR/LF line
endings.

Therefore, let's not pretend that we are expecting Unix line endings.

This fixes https://github.com/git-for-windows/git/issues/2729

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2020-07-02 16:35:05 +02:00
Родитель 97dde63ea9
Коммит f4e04795bb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -78,7 +78,7 @@ int git_read_line_interactively(struct strbuf *line)
int ret; int ret;
fflush(stdout); fflush(stdout);
ret = strbuf_getline_lf(line, stdin); ret = strbuf_getline(line, stdin);
if (ret != EOF) if (ret != EOF)
strbuf_trim_trailing_newline(line); strbuf_trim_trailing_newline(line);