Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/dart/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
dart包是否可能依赖于bitbucket托管的私有存储库?_Dart_Flutter_Bitbucket - Fatal编程技术网

dart包是否可能依赖于bitbucket托管的私有存储库?

dart包是否可能依赖于bitbucket托管的私有存储库?,dart,flutter,bitbucket,Dart,Flutter,Bitbucket,是否可能有一个引用私有bitbucket存储库的包?类似于下面的内容,但我需要提供密码和用户名。用Dart能做到这一点吗 dependencies: secreterepo: git: https://blah@bitbucket.org/blah/secretrepo.git 您可以设置SSH以创建到BitBucket的经过身份验证的连接,然后在依赖项中使用SSH URL,如git@bitbucket.org:blah/secretrepo.git您可以设置SSH以创建到Bi

是否可能有一个引用私有bitbucket存储库的包?类似于下面的内容,但我需要提供密码和用户名。用Dart能做到这一点吗

dependencies:  
  secreterepo:
    git: https://blah@bitbucket.org/blah/secretrepo.git

您可以设置SSH以创建到BitBucket的经过身份验证的连接,然后在依赖项中使用SSH URL,如
git@bitbucket.org:blah/secretrepo.git

您可以设置SSH以创建到BitBucket的经过身份验证的连接,然后在依赖项中使用SSH URL,如
git@bitbucket.org:blah/secretrepo.git
Many感谢@GünterZöchbauer,它工作得很好:)很高兴听到:)为任何想要设置bitbucket SSH密钥的人提供了一个链接