stderr:致命:不是git存储库

时间:2014-03-17 19:31:19

标签: node.js git

我收到了这个错误。

stderr: fatal: Not a git repository: 'C:/Users/DELL/SparkleShare/test4'

当我使用node命令从命令行运行app.js文件时。

这是config.js文件,其中添加了存储库。

exports.sessionSecret = 'JustSomeRandomString';

exports.folders = [
  { type: 'git', name: 'Public GIT folder', path: 'C:/Users/DELL/SparkleShare/test4', pub: true }
];

exports.listen = {
  port: 3000,
  host: null
};

exports.https = {
  enabled: false,
  key: '/path/to/private.key',
  cert: '/path/to/cert.crt'
};

exports.basepath = '';
exports.externalUrl = null;

// 300 sec
exports.linkCodeValidFor = 300;

// none | min | info | debug
exports.logging = 'none';

exports.fanout = {
  enabled: false,
  host: null,
  port: 1986
};

exports.backend = {
  'git': {
    'bin': 'git'
  }
};

0 个答案:

没有答案