|
68 | 68 | $_prefix, $_no_checkout, $_url, $_verbose,
|
69 | 69 | $_git_format, $_commit_url, $_tag);
|
70 | 70 | $Git::SVN::_follow_parent = 1;
|
| 71 | +$_q ||= 0; |
71 | 72 | my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
|
72 | 73 | 'config-dir=s' => \$Git::SVN::Ra::config_dir,
|
73 | 74 | 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
|
|
80 | 81 | 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
|
81 | 82 | 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
|
82 | 83 | 'no-checkout' => \$_no_checkout,
|
83 |
| - 'quiet|q' => \$_q, |
| 84 | + 'quiet|q+' => \$_q, |
84 | 85 | 'repack-flags|repack-args|repack-opts=s' =>
|
85 | 86 | \$Git::SVN::_repack_flags,
|
86 | 87 | 'use-log-author' => \$Git::SVN::_use_log_author,
|
@@ -2331,13 +2332,13 @@ sub do_git_commit {
|
2331 | 2332 |
|
2332 | 2333 | $self->{last_rev} = $log_entry->{revision};
|
2333 | 2334 | $self->{last_commit} = $commit;
|
2334 |
| - print "r$log_entry->{revision}" unless $::_q; |
| 2335 | + print "r$log_entry->{revision}" unless $::_q > 1; |
2335 | 2336 | if (defined $log_entry->{svm_revision}) {
|
2336 |
| - print " (\@$log_entry->{svm_revision})" unless $::_q; |
| 2337 | + print " (\@$log_entry->{svm_revision})" unless $::_q > 1; |
2337 | 2338 | $self->rev_map_set($log_entry->{svm_revision}, $commit,
|
2338 | 2339 | 0, $self->svm_uuid);
|
2339 | 2340 | }
|
2340 |
| - print " = $commit ($self->{ref_id})\n" unless $::_q; |
| 2341 | + print " = $commit ($self->{ref_id})\n" unless $::_q > 1; |
2341 | 2342 | if (--$_gc_nr == 0) {
|
2342 | 2343 | $_gc_nr = $_gc_period;
|
2343 | 2344 | gc();
|
|
0 commit comments