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
2e609e29
Commit
2e609e29
authored
Apr 22, 2014
by
Vicent Marti
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2286 from libgit2/rb/fix-reset-staged-delete
Fix reset for staged deletes
parents
28750a7d
bd101a7e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
5 deletions
+45
-5
src/reset.c
+8
-3
tests/reset/default.c
+37
-2
No files found.
src/reset.c
View file @
2e609e29
...
...
@@ -60,13 +60,18 @@ int git_reset_default(
for
(
i
=
0
,
max_i
=
git_diff_num_deltas
(
diff
);
i
<
max_i
;
++
i
)
{
const
git_diff_delta
*
delta
=
git_diff_get_delta
(
diff
,
i
);
if
((
error
=
git_index_conflict_remove
(
index
,
delta
->
old_file
.
path
))
<
0
)
goto
cleanup
;
assert
(
delta
->
status
==
GIT_DELTA_ADDED
||
delta
->
status
==
GIT_DELTA_MODIFIED
||
delta
->
status
==
GIT_DELTA_DELETED
);
error
=
git_index_conflict_remove
(
index
,
delta
->
old_file
.
path
);
if
(
error
<
0
)
{
if
(
delta
->
status
==
GIT_DELTA_ADDED
&&
error
==
GIT_ENOTFOUND
)
giterr_clear
();
else
goto
cleanup
;
}
if
(
delta
->
status
==
GIT_DELTA_DELETED
)
{
if
((
error
=
git_index_remove
(
index
,
delta
->
old_file
.
path
,
0
))
<
0
)
goto
cleanup
;
...
...
tests/reset/default.c
View file @
2e609e29
...
...
@@ -21,7 +21,6 @@ static void initialize(const char *repo_name)
void
test_reset_default__initialize
(
void
)
{
initialize
(
"status"
);
}
void
test_reset_default__cleanup
(
void
)
...
...
@@ -67,6 +66,8 @@ void test_reset_default__resetting_filepaths_against_a_null_target_removes_them_
{
char
*
paths
[]
=
{
"staged_changes"
,
"staged_new_file"
};
initialize
(
"status"
);
_pathspecs
.
strings
=
paths
;
_pathspecs
.
count
=
2
;
...
...
@@ -102,6 +103,8 @@ void test_reset_default__resetting_filepaths_replaces_their_corresponding_index_
char
*
after_shas
[]
=
{
"32504b727382542f9f089e24fddac5e78533e96c"
,
"061d42a44cacde5726057b67558821d95db96f19"
};
initialize
(
"status"
);
_pathspecs
.
strings
=
paths
;
_pathspecs
.
count
=
2
;
before
.
strings
=
before_shas
;
...
...
@@ -139,7 +142,6 @@ void test_reset_default__resetting_filepaths_clears_previous_conflicts(void)
char
*
paths
[]
=
{
"conflicts-one.txt"
};
char
*
after_shas
[]
=
{
"1f85ca51b8e0aac893a621b61a9c2661d6aa6d81"
};
test_reset_default__cleanup
();
initialize
(
"mergedrepo"
);
_pathspecs
.
strings
=
paths
;
...
...
@@ -168,6 +170,8 @@ void test_reset_default__resetting_unknown_filepaths_does_not_fail(void)
{
char
*
paths
[]
=
{
"I_am_not_there.txt"
,
"me_neither.txt"
};
initialize
(
"status"
);
_pathspecs
.
strings
=
paths
;
_pathspecs
.
count
=
2
;
...
...
@@ -178,3 +182,34 @@ void test_reset_default__resetting_unknown_filepaths_does_not_fail(void)
assert_content_in_index
(
&
_pathspecs
,
false
,
NULL
);
}
void
test_reset_default__staged_rename_reset_delete
(
void
)
{
git_index
*
idx
;
git_index_entry
entry
;
const
git_index_entry
*
existing
;
char
*
paths
[]
=
{
"new.txt"
};
initialize
(
"testrepo2"
);
cl_git_pass
(
git_repository_index
(
&
idx
,
_repo
));
existing
=
git_index_get_bypath
(
idx
,
"new.txt"
,
0
);
cl_assert
(
existing
);
memcpy
(
&
entry
,
existing
,
sizeof
(
entry
));
cl_git_pass
(
git_index_remove_bypath
(
idx
,
"new.txt"
));
entry
.
path
=
"renamed.txt"
;
cl_git_pass
(
git_index_add
(
idx
,
&
entry
));
_pathspecs
.
strings
=
paths
;
_pathspecs
.
count
=
1
;
assert_content_in_index
(
&
_pathspecs
,
false
,
NULL
);
cl_git_pass
(
git_revparse_single
(
&
_target
,
_repo
,
"HEAD"
));
cl_git_pass
(
git_reset_default
(
_repo
,
_target
,
&
_pathspecs
));
assert_content_in_index
(
&
_pathspecs
,
true
,
NULL
);
}
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