Gulp-git克隆在特定的文件夹位置。克隆到' undefined'夹

时间:2014-07-01 16:20:25

标签: git gulp

如何克隆并将其放在特定位置?

 var git = require('gulp-git'); 
// Clone a remote repo
 gulp.task('clone', function(){
 git.clone('https://git-location', './apps/');
});

我一直在查看文档,但我找不到任何文档。

以下是运行任务后的输出

[11:17:05] Starting 'clone'...
[11:17:05] Finished 'clone' after 5.76 ms
[11:17:48]  Cloning into 'undefined'...

当我运行任务时,它将文件复制到 undefined 文件夹中。显然,我做错了什么。有人能指出我吗?

1 个答案:

答案 0 :(得分:7)

感谢S.Lacey(gulp-git的出版商之一)迅速回复我的问题。以下是正确的格式。

git.clone("https://git-location",{cwd: "./apps/"});