(branch)
| 282 | } |
| 283 | |
| 284 | function gitCheckout(branch) { |
| 285 | var cmd = 'git checkout ' + branch; |
| 286 | var msg = 'Checkout branch ' + branch; |
| 287 | return run(cmd, msg); |
| 288 | } |
| 289 | |
| 290 | function npmPublish() { |
| 291 | if (config.noPush) return; |
nothing calls this directly
no test coverage detected
searching dependent graphs…