@@ -6,41 +6,38 @@ use git_repository as git;
6
6
fn main ( ) -> anyhow:: Result < ( ) > {
7
7
let repo_url = std:: env:: args_os ( )
8
8
. nth ( 1 )
9
- . context ( "First argument needs to be the repository URL" ) ?;
9
+ . context ( "The first argument is the repository URL" ) ?;
10
10
11
11
let dst = std:: env:: args_os ( )
12
12
. 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 " ) ?;
14
14
15
+ git:: interrupt:: init_handler ( || { } ) ?;
15
16
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 ( ) ) ?;
18
18
19
19
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) ?;
22
21
23
22
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 ) ?;
27
25
28
26
println ! (
29
27
"Checking out into {:?} ..." ,
30
- checkout . repo( ) . work_dir( ) . expect( "should be there" )
28
+ prepare_checkout . repo( ) . work_dir( ) . expect( "should be there" )
31
29
) ;
32
30
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" ) ) ;
36
33
37
34
let remote = repo
38
35
. find_default_remote ( git:: remote:: Direction :: Fetch )
39
- . expect ( "Should be there " ) ?;
36
+ . expect ( "always present after clone " ) ?;
40
37
41
38
println ! (
42
39
"Default remote: {} -> {}" ,
43
- remote. name( ) . expect( "should be origin " ) . as_bstr( ) ,
40
+ remote. name( ) . expect( "default remote is always named " ) . as_bstr( ) ,
44
41
remote
45
42
. url( git:: remote:: Direction :: Fetch )
46
43
. expect( "should be the remote URL" )
0 commit comments