Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make git-pull verbose by default?

Tags:

git

github

Looking through the git-config variables and git-pull documentation I don't see a way to make git-pull pull verbose by default. Anybody know of a way?

like image 285
Jon Ursenbach Avatar asked Sep 12 '10 18:09

Jon Ursenbach


2 Answers

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.

like image 118
Cascabel Avatar answered Sep 21 '22 05:09

Cascabel


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).

like image 35
Benoit Courtine Avatar answered Sep 19 '22 05:09

Benoit Courtine