Skip to content
Snippets Groups Projects
Commit 8c77b8c9 authored by Orgad Shaneh's avatar Orgad Shaneh Committed by Tobias Hunger
Browse files

Git: Support file names with spaces


Change-Id: I19fa6fbcbf480b4a6c31cf628f8ca392f7bd7ef2
Reviewed-by: default avatarTobias Hunger <tobias.hunger@nokia.com>
parent a65520f9
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,10 @@ bool CommitData::parseFilesFromStatus(const QString &output)
continue;
}
QTC_ASSERT(line.at(2) == QLatin1Char(' '), continue);
if (!checkLine(line.mid(0, 2), line.mid(3), &files))
QString file = line.mid(3);
if (file.startsWith(QLatin1Char('"')))
file.remove(0, 1).chop(1);
if (!checkLine(line.mid(0, 2), file, &files))
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment