git ssb

0+

cel / pull-git-remote-helper



Commit 946fb8a79ab4d51e97cb324addd262ca482fa7d1

Don't output lines with -vv, since git already does

Charles Lehner committed on 10/11/2016, 1:13:38 AM
Parent: 4f9c62be9e03d1cbf99abf5bdd52bca0a0c13ab8

Files changed

lib/pkt-line.jschanged
lib/pkt-line.jsView
@@ -68,10 +68,8 @@
6868
6969 function readUpdate(abort, cb) {
7070 readPackLine(abort, function (end, line) {
7171 if (end) return cb(end)
72- if (options.verbosity >= 2)
73- console.error('line', line.toString('ascii'))
7472 if (!line.length) return cb(true)
7573 var args = util.split3(line.toString('ascii'))
7674 var args2 = util.split2(args[2], '\0')
7775 var caps = args2[1]
@@ -92,10 +90,8 @@
9290 function havesWants(onEnd) {
9391 return function readWant(abort, cb) {
9492 readPackLineStr(abort, function (end, line) {
9593 if (end) return abortCb(cb, end, onEnd)
96- if (options.verbosity >= 2)
97- console.error('line', line)
9894 if (line === 'done') return abortCb(cb, true, onEnd)
9995 if (line.length === 0) return cb(null, {type: 'flush-pkt'})
10096 var args = util.split3(line)
10197 var caps = args[2]

Built with git-ssb-web