Skip to content

Commit 668118c

Browse files
committed
refactor
Make clone example more idiomatic, and realize that getting progress is still a little hard without further support by either prodash or `git-repository` itself.
1 parent 24070a3 commit 668118c

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

git-repository/examples/clone.rs

+12-15
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,38 @@ use git_repository as git;
66
fn main() -> anyhow::Result<()> {
77
let repo_url = std::env::args_os()
88
.nth(1)
9-
.context("First argument needs to be the repository URL")?;
9+
.context("The first argument is the repository URL")?;
1010

1111
let dst = std::env::args_os()
1212
.nth(2)
13-
.context("Second argument needs to be the directory to clone the repository in")?;
13+
.context("The second argument is the directory to clone the repository into")?;
1414

15+
git::interrupt::init_handler(|| {})?;
1516
std::fs::create_dir_all(&dst)?;
16-
17-
let url = git_url::parse(repo_url.to_str().unwrap().into())?;
17+
let url = git::url::parse(repo_url.to_str().unwrap().into())?;
1818

1919
println!("Url: {:?}", url.to_bstring());
20-
21-
let mut prepare = git::prepare_clone(url, &dst)?;
20+
let mut prepare_clone = git::prepare_clone(url, &dst)?;
2221

2322
println!("Cloning {repo_url:?} into {dst:?}...");
24-
25-
let (mut checkout, _) =
26-
prepare.fetch_then_checkout(git::progress::Discard, &std::sync::atomic::AtomicBool::default())?;
23+
let (mut prepare_checkout, _) =
24+
prepare_clone.fetch_then_checkout(git::progress::Discard, &git::interrupt::IS_INTERRUPTED)?;
2725

2826
println!(
2927
"Checking out into {:?} ...",
30-
checkout.repo().work_dir().expect("should be there")
28+
prepare_checkout.repo().work_dir().expect("should be there")
3129
);
3230

33-
let (repo, _) = checkout.main_worktree(git::progress::Discard, &std::sync::atomic::AtomicBool::default())?;
34-
35-
println!("Repo cloned into {:?}", repo.work_dir().expect("Should be there"));
31+
let (repo, _) = prepare_checkout.main_worktree(git::progress::Discard, &git::interrupt::IS_INTERRUPTED)?;
32+
println!("Repo cloned into {:?}", repo.work_dir().expect("directory pre-created"));
3633

3734
let remote = repo
3835
.find_default_remote(git::remote::Direction::Fetch)
39-
.expect("Should be there")?;
36+
.expect("always present after clone")?;
4037

4138
println!(
4239
"Default remote: {} -> {}",
43-
remote.name().expect("should be origin").as_bstr(),
40+
remote.name().expect("default remote is always named").as_bstr(),
4441
remote
4542
.url(git::remote::Direction::Fetch)
4643
.expect("should be the remote URL")

0 commit comments

Comments
 (0)