我使用两个Github平台。 https://github.com的公众人员和我的工作企业https://github.work.com。
我之前没有遇到任何麻烦,但我正试图运行npm install
。该项目有一个package.json文件,其中包含一个依赖项,它引用了我在git中的存储库:
"my-dependency-sdk": "git+https://git@github.work.com:organization/my-dependency-sdk.git"
这是安装的输出:
npm ERR! Error while executing:
npm ERR! /usr/local/bin/git ls-remote -h -t https://git@github.work.com/:organization/my-dependency-sdk.git
npm ERR!
npm ERR! fatal: unable to access 'https://git@github.work.com/:organization/my-dependency-sdk.git/': The requested URL returned error: 400
npm ERR!
npm ERR! exited with error code: 128
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/me/.npm/_logs/2018-04-10T17_44_59_498Z-debug.log
我的Mac上的Git安装是否可能包含一些可能指向公共Github的配置,而我正在寻找的存储库不存在?
答案 0 :(得分:0)
网址不正确。应该是:
git+https://github.work.com/organization/my-dependency-sdk.git
我最初使用的格式是ssh。