它可以选择一些分支在pubspec.yaml?
pubspec.yaml
library_sdk: git: url: git://github.com/library/library.git
我需要使用develop分支而不是master。
xuo3flqw1#
好,来自扑动文档(https://dart.dev/tools/pub/dependencies):如果你想依赖于一个特定的commit、分支或tag,添加一个ref参数:
dependencies: kittens: git: url: git://github.com/munificent/kittens.git ref: some-branch
ref可以是Git允许用来标识提交的任何东西。
1条答案
按热度按时间xuo3flqw1#
好,来自扑动文档(https://dart.dev/tools/pub/dependencies):
如果你想依赖于一个特定的commit、分支或tag,添加一个ref参数:
ref可以是Git允许用来标识提交的任何东西。