download-git-repo
这个包的第一个参数要怎么写?
var download = require('download-git-repo');
download('这个参数?', 'test/tmp', function (err) {
console.log(err ? 'Error' : 'Success')
})
download('gitlab:mygitlab.com:flipxfx/download-git-repo-fixture#my-branch', 'test/tmp', function (err) {
console.log(err ? 'Error' : 'Success')
})
这个是文档上的写法,但是我按照文档上换成我的仓库依然不行。
这块写了第一个参数repository该如何填写,是你写的第一个参数地址不对,才导致的128.文档是这个地址也可能是不对的你用你自己的仓库地址github:
第一个红框的地址是干扰项,不要用那个地址。download第一个参数是github:(第二个红框的路径)
说白了第一个参数就是类型[github/gitlab/Bitbucket]:[账户名]/[仓库名]