Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
0015b587
Commit
0015b587
authored
Dec 14, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deploy git_clone_options to network sample
parent
18b2d560
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
examples/network/clone.c
+10
-5
No files found.
examples/network/clone.c
View file @
0015b587
...
...
@@ -65,8 +65,8 @@ static int cred_acquire(git_cred **out, const char *url, unsigned int allowed_ty
int
do_clone
(
git_repository
*
repo
,
int
argc
,
char
**
argv
)
{
progress_data
pd
;
git_remote
*
origin
=
NULL
;
git_repository
*
cloned_repo
=
NULL
;
git_clone_options
clone_opts
=
GIT_CLONE_OPTIONS_INIT
;
git_checkout_opts
checkout_opts
=
GIT_CHECKOUT_OPTS_INIT
;
const
char
*
url
=
argv
[
1
];
const
char
*
path
=
argv
[
2
];
...
...
@@ -87,18 +87,23 @@ int do_clone(git_repository *repo, int argc, char **argv)
checkout_opts
.
progress_payload
=
&
pd
;
// Create the origin remote, and set up for auth
error
=
git_remote_new
(
&
origin
,
NULL
,
"origin"
,
url
,
GIT_REMOTE_DEFAULT_FETCH
);
error
=
git_remote_new
(
&
clone_opts
.
origin_remote
,
NULL
,
"origin"
,
url
,
GIT_REMOTE_DEFAULT_FETCH
);
if
(
error
!=
0
)
{
const
git_error
*
err
=
giterr_last
();
if
(
err
)
printf
(
"ERROR %d: %s
\n
"
,
err
->
klass
,
err
->
message
);
else
printf
(
"ERROR %d: no detailed info
\n
"
,
error
);
return
error
;
}
git_remote_set_cred_acquire_cb
(
origin
,
cred_acquire
,
NULL
);
git_remote_set_cred_acquire_cb
(
clone_opts
.
origin_remote
,
cred_acquire
,
NULL
);
// Do the clone
error
=
git_clone
(
&
cloned_repo
,
origin
,
path
,
&
checkout_opts
,
&
fetch_progress
,
&
pd
);
git_remote_free
(
origin
);
clone_opts
.
out
=
&
cloned_repo
;
clone_opts
.
local_path
=
path
;
clone_opts
.
checkout_opts
=
&
checkout_opts
;
clone_opts
.
fetch_progress_cb
=
&
fetch_progress
;
clone_opts
.
fetch_progress_payload
=
&
pd
;
error
=
git_clone
(
&
clone_opts
);
git_remote_free
(
clone_opts
.
origin_remote
);
printf
(
"
\n
"
);
if
(
error
!=
0
)
{
const
git_error
*
err
=
giterr_last
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment