web-dev-qa-db-fra.com

comment installer une branche spécifique du référentiel git en utilisant du fil?

Je peux installer un package GitHub mais pas un autre en utilisant du fil. Veuillez me faire savoir quel pourrait être le problème ici.

Je peux ajouter https://github.com/fancyapps/fancybox#3. mais pas https://github.com/opentripplanner/otp-react-redux#result-post-processor

ravis-MacBook-Pro:gitprojects raviramadoss$ mkdir test
ravis-MacBook-Pro:gitprojects raviramadoss$ cd test
ravis-MacBook-Pro:test raviramadoss$ 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 raviramadoss$ 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/[email protected]" 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/[email protected]
info All dependencies
└─ @fancyapps/[email protected]
✨  Done in 1.35s.


ravis-MacBook-Pro:test raviramadoss$ 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 raviramadoss$ 
10
Ravi R

Vous devez utiliser votre URL distante et spécifier la branche après le hachage (#).

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

installe un package à partir d'un référentiel git distant dans une branche git spécifique, une validation git ou une balise git.

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

enter image description here

23
patelarpan