When I use Git-gui tool for making commits, I can look through the changes in edited files. But this utility does not display line numbers of changes in file, so it is hard to find these changes in editor then. Options menu displays git settings and no line number option is available. Is it possible to enable line numbers in Git-gui ?
Asked
Active
Viewed 990 times
1 Answers
2
Unfortunately, no.
git gui
does not feature that option.
You'd have to open your file in a proper editor software.

Romain Valeri
- 19,645
- 3
- 36
- 61
-
Or use a difftool like meld – EncryptedWatermelon Nov 07 '19 at 16:22
-
Given the number of upvotes from [another question](https://stackoverflow.com/questions/10950412/what-does-1-1-mean-in-gits-diff-output), I believe it's worth mentioning here that the diff hunk identifier can be used to find the approximate line number. – Ben Jasperson Jul 10 '23 at 13:33