git co -b foo
echo hello > "a b"
git add "a b"
git commit -m x
git co master
git co -b bar
echo world > "a b"
git add "a b"
git commit -m y
git rebase foo
git conflicted
Prior to this, conflicted would try to load for a file "a" because awk thinks the space in the name is a column separator.
How to replicate the problem:
Prior to this, conflicted would try to load for a file "a" because awk thinks the space in the name is a column separator.