19

私が書いたpackage.jsonのプライベートパッケージのGit URLである依存関係を設定したい:

"dependencies" : { 
    "mymodule" : "git://git@git.myrepo.com:/myproject#mybranch"
}

実行するnpm installと、次のエラーが発生します。

git clone git://git@git.myrepo.com:/myproject.git Cloning into bare repository '/hom
/Ostro/.npm/_git-remotes/git-git-myrepo-com-myproject-git-4d838f3d'...
npm ERR! git clone git://git.myrepo.com:/myproject.git
npm ERR! git clone git://git.myrepo.com:/myproject.git fatal: Unable to look up
git.myrepo.com (port ) (Servname() not supported for ai_socktype)
npm ERR! Error: git "clone" "--mirror" "git://git.myrepo.com:/myproject.git" "/hom
/Ostro/.npm/_git-remotes/git-git-myrepo-com-myproject-git-4d838f3d" failed with 128
npm ERR! at ChildProcess. (/usr/local/lib/node_modules/npm/lib/utils/exec.js:56:20)
npm ERR! at ChildProcess.EventEmitter.emit (events.js:99:17)
npm ERR! at maybeClose (child_process.js:638:16)
npm ERR! at Socket.ChildProcess.spawn.stdin (child_process.js:815:11)
npm ERR! at Socket.EventEmitter.emit (events.js:96:17)
npm ERR! at Socket._destroy.destroyed (net.js:358:10)
npm ERR! at process.startup.processNextTick.process._tickCallback (node.js:245:9)

しかし、npm call のように見えますが、代わりgit clone --mirror git://git.myrepo.com ...etc に呼び出す必要はありませんか?git clone --mirror git.myrepo.com ...etc

誰かがすでにそれに直面していますか?または何か手がかりがありますか?

4

1 に答える 1

41

有効なフォームは次のとおりです。username@ を使用している場合は、ssh または https を指定する必要があります。また、アカウントを使用していない場合、:/ が有効かどうかもわかりません。

git://github.com/user/project.git#commit-ish
git+ssh://user@hostname:project.git#commit-ish
git+ssh://user@hostname/project.git#commit-ish
git+http://user@hostname/project/blah.git#commit-ish
git+https://user@hostname/project/blah.git#commit-ish
于 2013-05-07T16:10:05.503 に答える