Crates.io | rustgit |
lib.rs | rustgit |
version | 1.1.1 |
source | src |
created_at | 2023-07-26 10:43:05.832256 |
updated_at | 2023-09-26 11:37:14.523249 |
description | Pure-rust Git Client |
homepage | |
repository | https://github.com/NathanRoyer/rustgit |
max_upload_size | |
id | 926349 |
size | 65,322 |
Pure-rust Git Client
use rustgit::*;
use coolssh::create_ed25519_keypair;
let github_account_id = "john.doe@gmail.com";
let (openssh_encoded_pubkey, keypair) = create_ed25519_keypair(github_account_id);
println!("{}", openssh_encoded_pubkey);
// Add this public key to `authorized_keys` on your server
// -> https://github.com/settings/keys
let remote = Remote::new("github.com:22", "git", "NathanRoyer/rustgit.git", &keypair);
let mut repo = Repository::new();
let the_branch = "main";
// we don't need the full history
let clone_depth = Some(1);
// this will clone the branch via SSH
repo.clone(remote, Reference::Branch(the_branch), clone_depth).unwrap();
// enough with this library
repo.stage("src/lib.rs", None).unwrap();
// let's be nice with each other
repo.stage("content.txt", Some(("Hello World!".into(), FileType::RegularFile))).unwrap();
let new_head = repo.commit(
"I said hello to the world",
("John Doe", github_account_id),
("John Doe", github_account_id),
None,
).unwrap();
// this will update the branch via SSH
repo.push(remote, &[(the_branch, new_head)], false).unwrap();
shallow
option.report-status
and thin-pack
options.fn Repository::log() -> impl Iterator<Item = Commit>
Feel free to submit pull requests for these.