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
b81aa2f1
Commit
b81aa2f1
authored
Nov 29, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deploy GIT_CHECKOUT_OPTS_INIT
parent
f4fc9fdb
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
53 additions
and
11 deletions
+53
-11
examples/network/clone.c
+1
-1
src/checkout.c
+21
-1
src/reset.c
+1
-2
src/stash.c
+1
-3
tests-clar/checkout/checkout_util.h
+5
-0
tests-clar/checkout/index.c
+21
-2
tests-clar/checkout/tree.c
+2
-1
tests-clar/checkout/typechange.c
+1
-1
No files found.
examples/network/clone.c
View file @
b81aa2f1
...
...
@@ -51,7 +51,7 @@ int do_clone(git_repository *repo, int argc, char **argv)
{
progress_data
pd
;
git_repository
*
cloned_repo
=
NULL
;
git_checkout_opts
checkout_opts
;
git_checkout_opts
checkout_opts
=
GIT_CHECKOUT_OPTS_INIT
;
const
char
*
url
=
argv
[
1
];
const
char
*
path
=
argv
[
2
];
int
error
;
...
...
src/checkout.c
View file @
b81aa2f1
...
...
@@ -225,10 +225,12 @@ static int retrieve_symlink_caps(git_repository *repo, bool *can_symlink)
static
void
normalize_options
(
git_checkout_opts
*
normalized
,
git_checkout_opts
*
proposed
)
{
git_checkout_opts
init_opts
=
GIT_CHECKOUT_OPTS_INIT
;
assert
(
normalized
);
if
(
!
proposed
)
mem
set
(
normalized
,
0
,
sizeof
(
git_checkout_opts
));
mem
move
(
normalized
,
&
init_opts
,
sizeof
(
git_checkout_opts
));
else
memmove
(
normalized
,
proposed
,
sizeof
(
git_checkout_opts
));
...
...
@@ -601,6 +603,19 @@ static int checkout_create_submodules(
return
0
;
}
static
bool
opts_is_valid_version
(
git_checkout_opts
*
opts
)
{
if
(
!
opts
)
return
true
;
if
(
opts
->
version
>
0
&&
opts
->
version
<=
GIT_CHECKOUT_OPTS_VERSION
)
return
true
;
giterr_set
(
GITERR_INVALID
,
"Invalid version %d on git_checkout_opts structure"
,
opts
->
version
);
return
false
;
}
int
git_checkout_index
(
git_repository
*
repo
,
git_index
*
index
,
...
...
@@ -624,6 +639,11 @@ int git_checkout_index(
GIT_DIFF_INCLUDE_UNMODIFIED
|
GIT_DIFF_INCLUDE_UNTRACKED
|
GIT_DIFF_INCLUDE_TYPECHANGE
|
GIT_DIFF_SKIP_BINARY_CHECK
;
if
(
!
opts_is_valid_version
(
opts
))
{
error
=
-
1
;
goto
cleanup
;
}
if
(
opts
&&
opts
->
paths
.
count
>
0
)
diff_opts
.
pathspec
=
opts
->
paths
;
...
...
src/reset.c
View file @
b81aa2f1
...
...
@@ -69,7 +69,7 @@ int git_reset(
git_index
*
index
=
NULL
;
git_tree
*
tree
=
NULL
;
int
error
=
-
1
;
git_checkout_opts
opts
;
git_checkout_opts
opts
=
GIT_CHECKOUT_OPTS_INIT
;
assert
(
repo
&&
target
);
assert
(
reset_type
==
GIT_RESET_SOFT
...
...
@@ -136,7 +136,6 @@ int git_reset(
goto
cleanup
;
}
memset
(
&
opts
,
0
,
sizeof
(
opts
));
opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
if
(
git_checkout_index
(
repo
,
NULL
,
&
opts
)
<
0
)
{
...
...
src/stash.c
View file @
b81aa2f1
...
...
@@ -498,9 +498,7 @@ static int reset_index_and_workdir(
git_commit
*
commit
,
bool
remove_untracked
)
{
git_checkout_opts
opts
;
memset
(
&
opts
,
0
,
sizeof
(
git_checkout_opts
));
git_checkout_opts
opts
=
GIT_CHECKOUT_OPTS_INIT
;
opts
.
checkout_strategy
=
GIT_CHECKOUT_UPDATE_MODIFIED
|
GIT_CHECKOUT_UPDATE_UNTRACKED
;
...
...
tests-clar/checkout/checkout_util.h
0 → 100644
View file @
b81aa2f1
GIT_INLINE
(
void
)
reset_checkout_opts
(
git_checkout_opts
*
opts
)
{
git_checkout_opts
init_opts
=
GIT_CHECKOUT_OPTS_INIT
;
memmove
(
opts
,
&
init_opts
,
sizeof
(
git_checkout_opts
));
}
tests-clar/checkout/index.c
View file @
b81aa2f1
...
...
@@ -2,6 +2,7 @@
#include "git2/checkout.h"
#include "repository.h"
#include "checkout_util.h"
static
git_repository
*
g_repo
;
static
git_checkout_opts
g_opts
;
...
...
@@ -25,7 +26,7 @@ void test_checkout_index__initialize(void)
{
git_tree
*
tree
;
memset
(
&
g_opts
,
0
,
sizeof
(
g_opts
)
);
reset_checkout_opts
(
&
g_opts
);
g_opts
.
checkout_strategy
=
GIT_CHECKOUT_SAFE
;
g_repo
=
cl_git_sandbox_init
(
"testrepo"
);
...
...
@@ -66,7 +67,7 @@ void test_checkout_index__cannot_checkout_a_bare_repository(void)
{
test_checkout_index__cleanup
();
memset
(
&
g_opts
,
0
,
sizeof
(
g_opts
)
);
reset_checkout_opts
(
&
g_opts
);
g_repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
cl_git_fail
(
git_checkout_index
(
g_repo
,
NULL
,
NULL
));
...
...
@@ -426,3 +427,21 @@ void test_checkout_index__can_overcome_name_clashes(void)
git_index_free
(
index
);
}
void
test_checkout_index__validates_struct_version
(
void
)
{
const
git_error
*
err
;
g_opts
.
version
=
1024
;
cl_git_fail
(
git_checkout_index
(
g_repo
,
NULL
,
&
g_opts
));
err
=
giterr_last
();
cl_assert_equal_i
(
err
->
klass
,
GITERR_INVALID
);
g_opts
.
version
=
0
;
giterr_clear
();
cl_git_fail
(
git_checkout_index
(
g_repo
,
NULL
,
&
g_opts
));
err
=
giterr_last
();
cl_assert_equal_i
(
err
->
klass
,
GITERR_INVALID
);
}
tests-clar/checkout/tree.c
View file @
b81aa2f1
...
...
@@ -2,6 +2,7 @@
#include "git2/checkout.h"
#include "repository.h"
#include "checkout_util.h"
static
git_repository
*
g_repo
;
static
git_checkout_opts
g_opts
;
...
...
@@ -11,7 +12,7 @@ void test_checkout_tree__initialize(void)
{
g_repo
=
cl_git_sandbox_init
(
"testrepo"
);
memset
(
&
g_opts
,
0
,
sizeof
(
g_opts
)
);
reset_checkout_opts
(
&
g_opts
);
g_opts
.
checkout_strategy
=
GIT_CHECKOUT_SAFE
;
}
...
...
tests-clar/checkout/typechange.c
View file @
b81aa2f1
...
...
@@ -38,7 +38,7 @@ void test_checkout_typechange__checkout_typechanges(void)
{
int
i
;
git_object
*
obj
;
git_checkout_opts
opts
=
{
0
}
;
git_checkout_opts
opts
=
GIT_CHECKOUT_OPTS_INIT
;
opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
...
...
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