Does Git Add have a verbose switch

For some git-commands you can specify --verbose,

git 'command' --verbose

or

git 'command' -v

Make sure the switch is after the actual git command. Otherwise – it won’t work!

Also useful:

git 'command' --dry-run 

Leave a Comment