You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--color=never is equivalent with --color, --color=always is equivalent with --no-color, when the output is stdout, --color=auto = --color=always, when output is not stdout (such as a file), --color=auto = --color=never.
The text was updated successfully, but these errors were encountered:
Just for reference: --color is a boolean flag currently, and therefore not easily changeable into an options with arguments (at least when --color auto should/would also work as --color=auto).
Code ref:
--color=never
is equivalent with--color
,--color=always
is equivalent with--no-color
, when the output is stdout,--color=auto
=--color=always
, when output is not stdout (such as a file),--color=auto
=--color=never
.The text was updated successfully, but these errors were encountered: