I can verbose the output of the git commit
command by default with git config --global commit.verbose true
.
This makes an entry in the .gitconfig
:
[commit]
verbose = true
I tried the same with the git add
command:
[add]
verbose = true
resp.: git config --global add.verbose true
However, this does not work (also tab-completion doesn't show me the configuration option add.verbose
whereas it does for commit.verbose
).
Does anybody know if there is an option to enable this function?
I am aware of work-arounds like setting aliases, but it remains a work-around and not a 100% solution.