#git #credentials #git2 #user-name #ui #remote-callbacks #credential-handler

git2_credentials

提供与git2::RemoteCallbacks::credentials一起使用的身份验证函数

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 身份验证

Download history • Rust 包仓库 244/week @ 2024-03-14 • Rust 包仓库 165/week @ 2024-03-21 • Rust 包仓库 208/week @ 2024-03-28 • Rust 包仓库 120/week @ 2024-04-04 • Rust 包仓库 212/week @ 2024-04-11 • Rust 包仓库 182/week @ 2024-04-18 • Rust 包仓库 252/week @ 2024-04-25 • Rust 包仓库 292/week @ 2024-05-02 • Rust 包仓库 637/week @ 2024-05-09 • Rust 包仓库 471/week @ 2024-05-16 • Rust 包仓库 267/week @ 2024-05-23 • Rust 包仓库 249/week @ 2024-05-30 • Rust 包仓库 304/week @ 2024-06-06 • Rust 包仓库 310/week @ 2024-06-13 • Rust 包仓库 597/week @ 2024-06-20 • Rust 包仓库 629/week @ 2024-06-27 • Rust 包仓库

1,901 每月下载
16 个Crates中使用了 (15个直接使用)

Apache-2.0

31KB
515

git2_credentials

crate license crate version

Actions Status

提供与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

感谢

代码 提取

依赖项

~12–22MB
~392K SLoC