我正在尝试在我的节点js app中使用私有GitLab repo作为npm依赖项,使用私有令牌密钥,如下所示:
"dependencies": {
"my-module": "git+https://<privateToken>:x-oauth-basic@<myGitLabURL>/<MyUser>/my-module.git"
}
当我运行npm install
时,我收到有关使用fatal: unable to access <git repo path>
的git克隆的错误以及443连接拒绝回复。
我找不到很多关于如何通过https而不是通过ssh执行此操作的文档。 好像是it does work on GitHub
有人在使用Https的GitLab上有过这方面的经验吗?
答案 0 :(得分:6)
这answer对我有用。
"my-module": "https://oauth2:<PersonalAccessToken>@gitlab.com/<group>/<repository-name>.git
您可以在用户设置 - >访问令牌(GitLab.com Link)下创建个人访问令牌。