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
2998a84a
Unverified
Commit
2998a84a
authored
Aug 29, 2021
by
Edward Thomson
Committed by
GitHub
Aug 29, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5841 from J0Nes90/features/checkout-dry-run
Checkout dry-run
parents
147b659f
aebdee8e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
0 deletions
+55
-0
include/git2/checkout.h
+6
-0
src/checkout.c
+3
-0
tests/checkout/tree.c
+46
-0
No files found.
include/git2/checkout.h
View file @
2998a84a
...
@@ -178,6 +178,12 @@ typedef enum {
...
@@ -178,6 +178,12 @@ typedef enum {
GIT_CHECKOUT_DONT_WRITE_INDEX
=
(
1u
<<
23
),
GIT_CHECKOUT_DONT_WRITE_INDEX
=
(
1u
<<
23
),
/**
/**
* Show what would be done by a checkout. Stop after sending
* notifications; don't update the working directory or index.
*/
GIT_CHECKOUT_DRY_RUN
=
(
1u
<<
24
),
/**
* THE FOLLOWING OPTIONS ARE NOT YET IMPLEMENTED
* THE FOLLOWING OPTIONS ARE NOT YET IMPLEMENTED
*/
*/
...
...
src/checkout.c
View file @
2998a84a
...
@@ -2622,6 +2622,9 @@ int git_checkout_iterator(
...
@@ -2622,6 +2622,9 @@ int git_checkout_iterator(
if
((
error
=
checkout_get_actions
(
&
actions
,
&
counts
,
&
data
,
workdir
))
!=
0
)
if
((
error
=
checkout_get_actions
(
&
actions
,
&
counts
,
&
data
,
workdir
))
!=
0
)
goto
cleanup
;
goto
cleanup
;
if
(
data
.
strategy
&
GIT_CHECKOUT_DRY_RUN
)
goto
cleanup
;
data
.
total_steps
=
counts
[
CHECKOUT_ACTION__REMOVE
]
+
data
.
total_steps
=
counts
[
CHECKOUT_ACTION__REMOVE
]
+
counts
[
CHECKOUT_ACTION__REMOVE_CONFLICT
]
+
counts
[
CHECKOUT_ACTION__REMOVE_CONFLICT
]
+
counts
[
CHECKOUT_ACTION__UPDATE_BLOB
]
+
counts
[
CHECKOUT_ACTION__UPDATE_BLOB
]
+
...
...
tests/checkout/tree.c
View file @
2998a84a
...
@@ -1636,3 +1636,49 @@ void test_checkout_tree__no_index_refresh(void)
...
@@ -1636,3 +1636,49 @@ void test_checkout_tree__no_index_refresh(void)
modify_index_and_checkout_tree
(
&
opts
);
modify_index_and_checkout_tree
(
&
opts
);
assert_status_entrycount
(
g_repo
,
0
);
assert_status_entrycount
(
g_repo
,
0
);
}
}
void
test_checkout_tree__dry_run
(
void
)
{
git_checkout_options
opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
git_oid
oid
;
git_object
*
obj
=
NULL
;
checkout_counts
ct
;
/* first let's get things into a known state - by checkout out the HEAD */
assert_on_branch
(
g_repo
,
"master"
);
opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
cl_git_pass
(
git_checkout_head
(
g_repo
,
&
opts
));
cl_assert
(
!
git_path_isdir
(
"testrepo/a"
));
check_file_contents_nocr
(
"testrepo/branch_file.txt"
,
"hi
\n
bye!
\n
"
);
/* now checkout branch but with dry run enabled */
memset
(
&
ct
,
0
,
sizeof
(
ct
));
opts
.
checkout_strategy
=
GIT_CHECKOUT_SAFE
|
GIT_CHECKOUT_DRY_RUN
;
opts
.
notify_flags
=
GIT_CHECKOUT_NOTIFY_ALL
;
opts
.
notify_cb
=
checkout_count_callback
;
opts
.
notify_payload
=
&
ct
;
cl_git_pass
(
git_reference_name_to_id
(
&
oid
,
g_repo
,
"refs/heads/dir"
));
cl_git_pass
(
git_object_lookup
(
&
obj
,
g_repo
,
&
oid
,
GIT_OBJECT_ANY
));
cl_git_pass
(
git_checkout_tree
(
g_repo
,
obj
,
&
opts
));
cl_git_pass
(
git_repository_set_head
(
g_repo
,
"refs/heads/dir"
));
assert_on_branch
(
g_repo
,
"dir"
);
/* these normally would have been created and updated, but with
* DRY_RUN they will be unchanged.
*/
cl_assert
(
!
git_path_isdir
(
"testrepo/a"
));
check_file_contents_nocr
(
"testrepo/branch_file.txt"
,
"hi
\n
bye!
\n
"
);
/* check that notify callback was invoked */
cl_assert_equal_i
(
ct
.
n_updates
,
2
);
git_object_free
(
obj
);
}
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