在npm install docs上掛鉤看起來可能會從github repo中安裝npm。npm從github pull request中安裝
是否也可以從拉取請求中專門安裝?
解決方案只是根據拉請求的最後一個提交(最後一個)進行安裝嗎?
在npm install docs上掛鉤看起來可能會從github repo中安裝npm。npm從github pull request中安裝
是否也可以從拉取請求中專門安裝?
解決方案只是根據拉請求的最後一個提交(最後一個)進行安裝嗎?
GitHub的是保持每一個namespace公關在原始回購,所以這也適用:
npm install <user>/<repo>#pull/<id>/head
NOTE: It doesn't seeem to be working with NPM v. 5. See the comment below .
例如:
npm i --save-dev json-schema-faker/json-schema-faker#pull/129/head
或yarn:
yarn add <user>/<repo>#<id>/head
例如:
yarn add json-schema-faker/json-schema-faker#129/head
注意,在紗線情況下,存在在沒有pull/
段包標識tifier。
如果您需要自動刪除從其中發起PR的安裝或repo /分支,這可能會有所幫助。另請參閱GitHub上的Modifying an inactive pull request locally。
「How to install NodeJS package from GitHub directly?」提到你可以指定一個分支。
所以,如果你知道從哪個公關來源於回購和分支,你可以做:
npm install git+https://github.com/user/repo.git#branch
Worth saying that you might need to escape the
#
to use a specific branch from the shell, i.e.:
npm install git+https://github.com/user/repo.git\#branch
Note that repository you want to install must be a npm module, it must contain a
package.json
file or else you will get this error:
Error: ENOENT, open 'tmp.tgz-unpack/package.json'.
這有效,但:我如何安裝多個拉請求(併合並它們)? – Munchkin
@Munchkin我不認爲這是你會用NPM本身做的事情。也許叉存儲庫,合併公關的叉子,並從那裏安裝? –
紗線(或Github了?)似乎不支持拉標籤。所以對於上面的例子來說:json-schema-faker/json-schema-faker#129/head。對於某些PR,還有一個「合併」(而不是「頭」)後綴,但我不知道這意味着什麼。 –