How can I make git-pull verbose by default?
Looking through the git-config variables and git开发者_如何学C-pull documentation I don't see a way to make git-pull pull verbose by default. Anybody know of a way?
There's not a config parameter for everything! But you can mostly take care of it for yourself with an alias:
[alias]
pv = pull -v
So you can use git pv <args>
, save typing two characters, and get the verbosity you want.
In your git global config file, you can create "aliases".
It is usefull to create new git commands (ignore, for example), or to define a default comportement to an existing command (in your case).
精彩评论