File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ OPTIONS
361
361
The username to use for git authentication (see --password-file or
362
362
--password).
363
363
364
- -v, --verbose <int>
364
+ -v, --verbose <int>, $GITSYNC_VERBOSE
365
365
Set the log verbosity level. Logs at this level and lower will be
366
366
printed. Logs follow these guidelines:
367
367
Original file line number Diff line number Diff line change @@ -342,7 +342,8 @@ func main() {
342
342
flHelp := pflag .BoolP ("help" , "h" , false , "print help text and exit" )
343
343
flManual := pflag .Bool ("man" , false , "print the full manual and exit" )
344
344
345
- flVerbose := pflag .IntP ("verbose" , "v" , 0 ,
345
+ flVerbose := pflag .IntP ("verbose" , "v" ,
346
+ envInt (0 , "GITSYNC_VERBOSE" ),
346
347
"logs at this V level and lower will be printed" )
347
348
348
349
flRepo := pflag .String ("repo" ,
@@ -2506,7 +2507,7 @@ OPTIONS
2506
2507
The username to use for git authentication (see --password-file or
2507
2508
--password).
2508
2509
2509
- -v, --verbose <int>
2510
+ -v, --verbose <int>, $GITSYNC_VERBOSE
2510
2511
Set the log verbosity level. Logs at this level and lower will be
2511
2512
printed. Logs follow these guidelines:
2512
2513
You can’t perform that action at this time.
0 commit comments