If my current directory is a subdirectory of a git project and I call git pull it always shows a path relative to the project root. Is there a way to see changed file paths relative to current directory?
Ex.
<root>/default $ git pull
...
Updating 03e5eb12..95987ffb
Fast-forward
../client/styles/components/manageEscrow.styles.ts | 11 +++++
./lib/index.ts | 8 ++--
INSTEAD OF
client/styles/components/manageEscrow.styles.ts | 11 +++++
default/lib/index.ts | 8 ++--