Long paths are prefixed with three dots
See original GitHub issueWhen I run git diff HEAD~1 --stat
I get the full relative paths on the output (9 levels down)
but when I pipe it to fpp I got them prefixed with three dots.
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Maximum Path Length Limitation - Win32 apps | Microsoft Learn
The maximum path of 32,767 characters is approximate, because the "\\?\" prefix may be expanded to a longer string by the system at...
Read more >windows - What does \\?\ mean when prepended to a file path
D:\very long path" . and: The "\\?\" prefix can also be used with paths constructed according to the universal naming convention (UNC).
Read more >On my Windows machine, I had a folder with a name of four ...
Microsoft calls this the "Extended Path Prefix", and paths with that prefix are called "extended-length paths". (funny: when you search for \\?\ ...
Read more >JavaScript Ellipsis: Three dots ( … ) in JavaScript
When three dots (…) is at the end of function parameters, it's "rest parameters" and gathers the rest of the list of arguments...
Read more >Need help working with long paths - UiPath Community Forum
prefix to use Windows API without path length limit (i think?), but now characters in the path (e.g. dots (.)) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We can also use the command like this
git show HEAD --stat=<width>
It seems that the default value is set to 80. We can override that by increasing<width>
Using
--numstat
instead of--stat
with the git command works for me.