如何使用纱线安装 git 存储库的特定分支?

how to install specific branch of git repository using yarn?

我可以安装一个 GitHub 包,但不能安装其他使用 yarn 的包。请让我知道这可能是什么问题。

我可以加https://github.com/fancyapps/fancybox#3.0 但不是 https://github.com/opentripplanner/otp-react-redux#result-post-processor

ravis-MacBook-Pro:gitprojects ******$ mkdir test
ravis-MacBook-Pro:gitprojects ******$ cd test
ravis-MacBook-Pro:test ***********$ yarn init
yarn init v1.6.0
question name (test): 
question version (1.0.0): 
question description: 
question entry point (index.js): 
question repository url: 
question author: 
question license (MIT): 
question private: 
success Saved package.json
✨  Done in 11.54s.

ravis-MacBook-Pro:test ******$ yarn add https://github.com/fancyapps/fancybox#3.0
yarn add v1.6.0
info No lockfile found.
[1/4]   Resolving packages...
[2/4]   Fetching packages...
[3/4]   Linking dependencies...
warning " > @fancyapps/fancybox@3.0.48" has unmet peer dependency "jquery@>=1.9.0".
[4/4]   Building fresh packages...
success Saved lockfile.
success Saved 1 new dependency.
info Direct dependencies
└─ @fancyapps/fancybox@3.0.48
info All dependencies
└─ @fancyapps/fancybox@3.0.48
✨  Done in 1.35s.


ravis-MacBook-Pro:test *******$ yarn add https://github.com/opentripplanner/otp-react-redux#result-post-processor
yarn add v1.6.0
[1/4]   Resolving packages...
error Can't add "otp-react-redux": invalid package version undefined.
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
ravis-MacBook-Pro:test *******$ 

您需要使用 git 远程 url 并在哈希 (#) 之后指定分支。

yarn add https://github.com/opentripplanner/otp-react-redux.git#result-post-processor

从远程 git 存储库中的特定 git 分支、git 提交或 git 标记安装包。

yarn add <git remote url>#<branch/commit/tag>

更新

请注意,对于 Yarn 2+,您需要在 URL 前加上包名:

yarn add otp-react-redux@https://github.com/opentripplanner/otp-react-redux#head=result-post-processor