22个版本 (12个破坏性更新)
0.13.0 | 2023年9月3日 |
---|---|
0.12.0 | 2023年8月22日 |
0.11.0 | 2023年3月5日 |
0.9.1 | 2022年9月11日 |
0.3.0 | 2019年7月9日 |
#127 in 身份验证
1,901 每月下载
在 16 个Crates中使用了 (15个直接使用)
31KB
515 行
git2_credentials
提供与git2::RemoteCallbacks::credentials一起使用的身份验证函数
用法
use git2;
use git2_credentials::CredentialHandler;
use tempfile;
let mut cb = git2::RemoteCallbacks::new();
let git_config = git2::Config::open_default().unwrap();
let mut ch = CredentialHandler::new(git_config);
cb.credentials(move |url, username, allowed| ch.try_next_credential(url, username, allowed));
// clone a repository
let mut fo = git2::FetchOptions::new();
fo.remote_callbacks(cb)
.download_tags(git2::AutotagOption::All)
.update_fetchhead(true);
let dst = tempfile::tempdir().unwrap();
std::fs::create_dir_all(&dst.as_ref()).unwrap();
git2::build::RepoBuilder::new()
.branch("master")
.fetch_options(fo)
.clone("git@github.com:davidB/git2_credentials.git", dst.as_ref()).unwrap();
您可以通过以下方式运行示例
cargo run --example clone -- --nocapture
您可以通过提供自定义UI(用于请求密码、短语)来提供CredentialUI
。提供了一个默认实现(使用dialoguer)。
构建
cargo make ci-flow
感谢
代码 提取 自
- cargo/utils.rs at master · rust-lang/cargo (search
with_authentication
)Cargo,Rust的包管理器。
- ffizer
ffizer是一个文件和文件夹初始化器/生成器。从模板创建任何类型(或部分)的项目。
- gpm/ssh.rs at master · aerys/gpm
基于Git的包管理器。
链接
依赖项
~12–22MB
~392K SLoC