When I do git status, it shows files with relative paths:
modified: foo
modified: ../../etc/hosts
Relative paths are more unclear than absolute paths. I have to mentally retrace the path to see where the file is located.
How can I tell git to use absolute paths?
modified: foo
modified: /etc/hosts
UPDATE
As suggested by @LightBender, I have set relativePaths = false in my .gitconfig:
[status]
howUntrackedFiles = all
relativePaths = false
However, this has no effect. git status still shows relative paths as before.