我正在尝试第一次使用lerna。当我使用时:

lerna import /path/to/my/create_react_app

这是响应:
lerna notice cli v3.13.1
lerna ERR! Error: Command failed: git rev-parse HEAD
lerna ERR! fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree.
lerna ERR! Use '--' to separate paths from revisions, like this:
lerna ERR! 'git <command> [<revision>...] -- [<file>...]'
lerna ERR!
lerna ERR! HEAD
lerna ERR!
lerna ERR!     at makeError (/usr/local/lib/node_modules/lerna/node_modules/execa/index.js:174:9)
lerna ERR!     at Function.module.exports.sync (/usr/local/lib/node_modules/lerna/node_modules/execa/index.js:338:15)
lerna ERR!     at Object.execSync (/usr/local/lib/node_modules/lerna/node_modules/@lerna/child-process/index.js:22:16)
lerna ERR!     at ImportCommand.getCurrentSHA (/usr/local/lib/node_modules/lerna/node_modules/@lerna/import/index.js:129:34)
lerna ERR!     at ImportCommand.initialize (/usr/local/lib/node_modules/lerna/node_modules/@lerna/import/index.js:98:31)
lerna ERR!     at Promise.resolve.then (/usr/local/lib/node_modules/lerna/node_modules/@lerna/command/index.js:271:24)

如何将本地仓库导入lerna包文件夹? (git版本2.17.2(Apple Git-113))

最佳答案

我找到了解决方案:提交lerna repo,然后重试。

关于node.js - 如何在lerna中导入本地git repo?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55204193/

10-13 08:41