as opposed to the long relative path?
In addition to the accepted answer, another way of doing it is with awk
awk
git status --porcelain | awk '{ print $2 }'
The $2 selects second the column of each line.
$2