git ssb

0+

cel / pull-git-remote-helper



Commit fcab47a8cf27c86e262858f310afdf8f59052283

Stub more options

cel committed on 3/29/2017, 4:05:34 PM
Parent: 02ac1bf6c426549d3331d83a77f16c0327f78872

Files changed

index.jschanged
index.jsView
@@ -15,13 +15,24 @@
1515
1616 function handleOption(options, name, value) {
1717 switch (name) {
1818 case 'verbosity':
19- options.verbosity = +value || 0
19 + options.verbosity = value|0
2020 return true
2121 case 'progress':
2222 options.progress = !!value && value !== 'false'
2323 return true
24 + /*
25 + case 'followtags':
26 + options.followtags = !!value
27 + return true
28 + case 'depth':
29 + options.depth = depth|0
30 + return true
31 + case 'deepen-relative':
32 + options.deepenRelative = !!value && value !== 'false'
33 + return true
34 + */
2435 default:
2536 console.error('unknown option', name + ': ' + value)
2637 return false
2738 }

Built with git-ssb-web