4
git show  --stat --pretty=format: 50c2ebc0e

Outputs:

 .git.ignore                                 |    2 +-
 .../WebServiceRequests/WebService.cs        |   78 ++++++++++----------
 .../UI/Bin/AjaxControlToolkit.omi           |    1 +

Is there a way to get the full path instead of those pesky 3 dots (...)?

Thanks

Eran Chetzroni
  • 1,046
  • 2
  • 14
  • 27

2 Answers2

4

Something like --stat=180,150. The numbers are: max width to take for the stat output, max width to use for the filenames.

araqnid
  • 127,052
  • 24
  • 157
  • 134
0

Possibly you might use git whatchanged which puts the full paths on the end of the lines. This one is likely easier to parse if you get any filenames with spaces in.

patthoyts
  • 32,320
  • 3
  • 62
  • 93