I am using git bash 2.32 on Windows 10.
In git bash after updating to 2.32 I see strange behavior of the command I used for displaying log:
git -c core.pager='less -S -F' log --all --decorate --oneline --graph
As you can see I try to use "a dog" command with less pager configured to quit on EOF and to cut lines whose length exceed the current screen width.
But after I updated to 2.32 the output appears to be truncated after 80 symbols which is usually much less than the actual screen width (as shown on the image below).
I am trying to understand how to increase that limit so that less truncates lines that are longer than say 160 symbols or rather the lines that just don't fit the current screen.
Note: I changed the width to 160 and now echo $COLUMNS returns 160 but that didn't help a bit.
Note: I also enabled checkwinsize option for the current session. Also no luck.

