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
8639ea5f
Commit
8639ea5f
authored
Jan 17, 2015
by
Edward Thomson
Committed by
Edward Thomson
Feb 14, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkout: introduce GIT_CHECKOUT_DONT_WRITE_INDEX
parent
55798fd1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
2 deletions
+91
-2
include/git2/checkout.h
+7
-1
src/checkout.c
+4
-1
tests/checkout/tree.c
+80
-0
No files found.
include/git2/checkout.h
View file @
8639ea5f
...
@@ -135,7 +135,10 @@ typedef enum {
...
@@ -135,7 +135,10 @@ typedef enum {
/** Only update existing files, don't create new ones */
/** Only update existing files, don't create new ones */
GIT_CHECKOUT_UPDATE_ONLY
=
(
1u
<<
7
),
GIT_CHECKOUT_UPDATE_ONLY
=
(
1u
<<
7
),
/** Normally checkout updates index entries as it goes; this stops that */
/**
* Normally checkout updates index entries as it goes; this stops that.
* Implies `GIT_CHECKOUT_DONT_WRITE_INDEX`.
*/
GIT_CHECKOUT_DONT_UPDATE_INDEX
=
(
1u
<<
8
),
GIT_CHECKOUT_DONT_UPDATE_INDEX
=
(
1u
<<
8
),
/** Don't refresh index/config/etc before doing checkout */
/** Don't refresh index/config/etc before doing checkout */
...
@@ -166,6 +169,9 @@ typedef enum {
...
@@ -166,6 +169,9 @@ typedef enum {
/** Don't overwrite existing files or folders */
/** Don't overwrite existing files or folders */
GIT_CHECKOUT_DONT_REMOVE_EXISTING
=
(
1u
<<
22
),
GIT_CHECKOUT_DONT_REMOVE_EXISTING
=
(
1u
<<
22
),
/** Normally checkout writes the index upon completion; this prevents that. */
GIT_CHECKOUT_DONT_WRITE_INDEX
=
(
1u
<<
23
),
/**
/**
* THE FOLLOWING OPTIONS ARE NOT YET IMPLEMENTED
* THE FOLLOWING OPTIONS ARE NOT YET IMPLEMENTED
*/
*/
...
...
src/checkout.c
View file @
8639ea5f
...
@@ -2375,6 +2375,9 @@ cleanup:
...
@@ -2375,6 +2375,9 @@ cleanup:
return
error
;
return
error
;
}
}
#define CHECKOUT_INDEX_DONT_WRITE_MASK \
(GIT_CHECKOUT_DONT_UPDATE_INDEX | GIT_CHECKOUT_DONT_WRITE_INDEX)
int
git_checkout_iterator
(
int
git_checkout_iterator
(
git_iterator
*
target
,
git_iterator
*
target
,
git_index
*
index
,
git_index
*
index
,
...
@@ -2481,7 +2484,7 @@ int git_checkout_iterator(
...
@@ -2481,7 +2484,7 @@ int git_checkout_iterator(
cleanup
:
cleanup
:
if
(
!
error
&&
data
.
index
!=
NULL
&&
if
(
!
error
&&
data
.
index
!=
NULL
&&
(
data
.
strategy
&
GIT_CHECKOUT_DONT_UPDATE_INDEX
)
==
0
)
(
data
.
strategy
&
CHECKOUT_INDEX_DONT_WRITE_MASK
)
==
0
)
error
=
git_index_write
(
data
.
index
);
error
=
git_index_write
(
data
.
index
);
git_diff_free
(
data
.
diff
);
git_diff_free
(
data
.
diff
);
...
...
tests/checkout/tree.c
View file @
8639ea5f
...
@@ -1184,3 +1184,83 @@ void test_checkout_tree__caches_attributes_during_checkout(void)
...
@@ -1184,3 +1184,83 @@ void test_checkout_tree__caches_attributes_during_checkout(void)
git_buf_free
(
&
ident2
);
git_buf_free
(
&
ident2
);
git_object_free
(
obj
);
git_object_free
(
obj
);
}
}
void
test_checkout_tree__can_not_update_index
(
void
)
{
git_oid
oid
;
git_object
*
head
;
unsigned
int
status
;
git_checkout_options
opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
git_index
*
index
;
opts
.
checkout_strategy
|=
GIT_CHECKOUT_FORCE
|
GIT_CHECKOUT_DONT_UPDATE_INDEX
;
cl_git_pass
(
git_reference_name_to_id
(
&
oid
,
g_repo
,
"HEAD"
));
cl_git_pass
(
git_object_lookup
(
&
head
,
g_repo
,
&
oid
,
GIT_OBJ_ANY
));
cl_git_pass
(
git_reset
(
g_repo
,
head
,
GIT_RESET_HARD
,
&
g_opts
,
NULL
,
NULL
));
cl_assert_equal_i
(
false
,
git_path_isdir
(
"./testrepo/ab/"
));
cl_git_pass
(
git_revparse_single
(
&
g_object
,
g_repo
,
"subtrees"
));
cl_git_pass
(
git_checkout_tree
(
g_repo
,
g_object
,
&
opts
));
cl_assert_equal_i
(
true
,
git_path_isfile
(
"./testrepo/ab/de/2.txt"
));
cl_git_pass
(
git_status_file
(
&
status
,
g_repo
,
"ab/de/2.txt"
));
cl_assert_equal_i
(
GIT_STATUS_WT_NEW
,
status
);
cl_git_pass
(
git_repository_index
(
&
index
,
g_repo
));
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_status_file
(
&
status
,
g_repo
,
"ab/de/2.txt"
));
cl_assert_equal_i
(
GIT_STATUS_WT_NEW
,
status
);
git_object_free
(
head
);
git_index_free
(
index
);
}
void
test_checkout_tree__can_update_but_not_write_index
(
void
)
{
git_oid
oid
;
git_object
*
head
;
unsigned
int
status
;
git_checkout_options
opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
git_index
*
index
;
git_repository
*
other
;
opts
.
checkout_strategy
|=
GIT_CHECKOUT_FORCE
|
GIT_CHECKOUT_DONT_WRITE_INDEX
;
cl_git_pass
(
git_reference_name_to_id
(
&
oid
,
g_repo
,
"HEAD"
));
cl_git_pass
(
git_object_lookup
(
&
head
,
g_repo
,
&
oid
,
GIT_OBJ_ANY
));
cl_git_pass
(
git_reset
(
g_repo
,
head
,
GIT_RESET_HARD
,
&
g_opts
,
NULL
,
NULL
));
cl_assert_equal_i
(
false
,
git_path_isdir
(
"./testrepo/ab/"
));
cl_git_pass
(
git_revparse_single
(
&
g_object
,
g_repo
,
"subtrees"
));
cl_git_pass
(
git_checkout_tree
(
g_repo
,
g_object
,
&
opts
));
cl_assert_equal_i
(
true
,
git_path_isfile
(
"./testrepo/ab/de/2.txt"
));
cl_git_pass
(
git_status_file
(
&
status
,
g_repo
,
"ab/de/2.txt"
));
cl_assert_equal_i
(
GIT_STATUS_INDEX_NEW
,
status
);
cl_git_pass
(
git_repository_open
(
&
other
,
"testrepo"
));
cl_git_pass
(
git_status_file
(
&
status
,
other
,
"ab/de/2.txt"
));
cl_assert_equal_i
(
GIT_STATUS_WT_NEW
,
status
);
git_repository_free
(
other
);
cl_git_pass
(
git_repository_index
(
&
index
,
g_repo
));
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_repository_open
(
&
other
,
"testrepo"
));
cl_git_pass
(
git_status_file
(
&
status
,
other
,
"ab/de/2.txt"
));
cl_assert_equal_i
(
GIT_STATUS_INDEX_NEW
,
status
);
git_repository_free
(
other
);
git_object_free
(
head
);
git_index_free
(
index
);
}
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