How do I get git to echo what files that are being staged during git add command?
Something like this...
> git add app/
app/index.html added
> _
How do I get git to echo what files that are being staged during git add command?
Something like this...
> git add app/
app/index.html added
> _
Copyright © 2021 Jogjafile Inc.
Use:
(or
--verbose, same thing). For whatever reasons,git rmis always-v(in effect—it doesn't actually have a-voption) and requires-qto make it quiet, whilegit addis never verbose and requires-vto make it loud. (Or, with-nit doesn't actually add but is verbose.)