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
586be3b8
Commit
586be3b8
authored
Feb 03, 2014
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add reflog parameters to git_reset
parent
0d847a31
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
61 additions
and
42 deletions
+61
-42
include/git2/reset.h
+12
-1
src/reset.c
+10
-2
tests/checkout/tree.c
+1
-1
tests/index/names.c
+2
-2
tests/index/reuc.c
+4
-4
tests/merge/workdir/simple.c
+2
-2
tests/merge/workdir/submodules.c
+2
-2
tests/reset/hard.c
+4
-4
tests/reset/mixed.c
+2
-2
tests/reset/soft.c
+8
-8
tests/revert/workdir.c
+14
-14
No files found.
include/git2/reset.h
View file @
586be3b8
...
...
@@ -48,10 +48,21 @@ typedef enum {
*
* @param reset_type Kind of reset operation to perform.
*
* @param signature The identity that will used to populate the reflog entry
*
* @param log_message The one line long message to be appended to the reflog.
* The reflog is only updated if the affected direct reference is actually
* changing. If NULL, the default is "reset: moving"; if you want something more
* useful, provide a message.
*
* @return 0 on success or an error code
*/
GIT_EXTERN
(
int
)
git_reset
(
git_repository
*
repo
,
git_object
*
target
,
git_reset_t
reset_type
);
git_repository
*
repo
,
git_object
*
target
,
git_reset_t
reset_type
,
git_signature
*
signature
,
const
char
*
log_message
);
/**
* Updates some entries in the index from the target commit tree.
...
...
src/reset.c
View file @
586be3b8
...
...
@@ -94,13 +94,16 @@ cleanup:
int
git_reset
(
git_repository
*
repo
,
git_object
*
target
,
git_reset_t
reset_type
)
git_reset_t
reset_type
,
git_signature
*
signature
,
const
char
*
log_message
)
{
git_object
*
commit
=
NULL
;
git_index
*
index
=
NULL
;
git_tree
*
tree
=
NULL
;
int
error
=
0
;
git_checkout_opts
opts
=
GIT_CHECKOUT_OPTS_INIT
;
git_buf
log_message_buf
=
GIT_BUF_INIT
;
assert
(
repo
&&
target
);
...
...
@@ -129,9 +132,14 @@ int git_reset(
goto
cleanup
;
}
if
(
log_message
)
git_buf_sets
(
&
log_message_buf
,
log_message
);
else
git_buf_sets
(
&
log_message_buf
,
"reset: moving"
);
/* move HEAD to the new target */
if
((
error
=
git_reference__update_terminal
(
repo
,
GIT_HEAD_FILE
,
git_object_id
(
commit
),
NULL
,
NULL
))
<
0
)
git_object_id
(
commit
),
signature
,
git_buf_cstr
(
&
log_message_buf
)
))
<
0
)
goto
cleanup
;
if
(
reset_type
==
GIT_RESET_HARD
)
{
...
...
tests/checkout/tree.c
View file @
586be3b8
...
...
@@ -571,7 +571,7 @@ void test_checkout_tree__donot_update_deleted_file_by_default(void)
cl_git_pass
(
git_oid_fromstr
(
&
old_id
,
"be3563ae3f795b2b4353bcce3a527ad0a4f7f644"
));
cl_git_pass
(
git_commit_lookup
(
&
old_commit
,
g_repo
,
&
old_id
));
cl_git_pass
(
git_reset
(
g_repo
,
(
git_object
*
)
old_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
g_repo
,
(
git_object
*
)
old_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
p_unlink
(
"testrepo/branch_file.txt"
));
cl_git_pass
(
git_index_remove_bypath
(
index
,
"branch_file.txt"
));
...
...
tests/index/names.c
View file @
586be3b8
...
...
@@ -89,7 +89,7 @@ void test_index_names__cleaned_on_reset_hard(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"3a34580"
));
test_index_names__add
();
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_assert
(
git_index_name_entrycount
(
repo_index
)
==
0
);
git_object_free
(
target
);
...
...
@@ -102,7 +102,7 @@ void test_index_names__cleaned_on_reset_mixed(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"3a34580"
));
test_index_names__add
();
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
,
NULL
,
NULL
));
cl_assert
(
git_index_name_entrycount
(
repo_index
)
==
0
);
git_object_free
(
target
);
...
...
tests/index/reuc.c
View file @
586be3b8
...
...
@@ -298,7 +298,7 @@ void test_index_reuc__cleaned_on_reset_hard(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"3a34580"
));
test_index_reuc__add
();
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_assert
(
reuc_entry_exists
()
==
false
);
git_object_free
(
target
);
...
...
@@ -311,7 +311,7 @@ void test_index_reuc__cleaned_on_reset_mixed(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"3a34580"
));
test_index_reuc__add
();
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
,
NULL
,
NULL
));
cl_assert
(
reuc_entry_exists
()
==
false
);
git_object_free
(
target
);
...
...
@@ -323,10 +323,10 @@ void test_index_reuc__retained_on_reset_soft(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"3a34580"
));
git_reset
(
repo
,
target
,
GIT_RESET_HARD
);
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
);
test_index_reuc__add
();
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_assert
(
reuc_entry_exists
()
==
true
);
git_object_free
(
target
);
...
...
tests/merge/workdir/simple.c
View file @
586be3b8
...
...
@@ -585,7 +585,7 @@ void test_merge_workdir_simple__directory_file(void)
cl_git_pass
(
git_reference_symbolic_create
(
&
head
,
repo
,
GIT_HEAD_FILE
,
GIT_REFS_HEADS_DIR
OURS_DIRECTORY_FILE
,
1
,
NULL
,
NULL
));
cl_git_pass
(
git_reference_name_to_id
(
&
head_commit_id
,
repo
,
GIT_HEAD_FILE
));
cl_git_pass
(
git_commit_lookup
(
&
head_commit
,
repo
,
&
head_commit_id
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_oid_fromstr
(
&
their_oids
[
0
],
THEIRS_DIRECTORY_FILE
));
cl_git_pass
(
git_merge_head_from_id
(
&
their_heads
[
0
],
repo
,
&
their_oids
[
0
]));
...
...
@@ -684,7 +684,7 @@ void test_merge_workdir_simple__binary(void)
cl_git_pass
(
git_oid_fromstr
(
&
their_oid
,
"ad01aebfdf2ac13145efafe3f9fcf798882f1730"
));
cl_git_pass
(
git_commit_lookup
(
&
our_commit
,
repo
,
&
our_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_merge_head_from_id
(
&
their_head
,
repo
,
&
their_oid
));
...
...
tests/merge/workdir/submodules.c
View file @
586be3b8
...
...
@@ -46,7 +46,7 @@ void test_merge_workdir_submodules__automerge(void)
cl_git_pass
(
git_reference_lookup
(
&
our_ref
,
repo
,
"refs/heads/"
SUBMODULE_MAIN_BRANCH
));
cl_git_pass
(
git_commit_lookup
(
&
our_commit
,
repo
,
git_reference_target
(
our_ref
)));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_reference_lookup
(
&
their_ref
,
repo
,
"refs/heads/"
SUBMODULE_OTHER_BRANCH
));
cl_git_pass
(
git_merge_head_from_ref
(
&
their_head
,
repo
,
their_ref
));
...
...
@@ -82,7 +82,7 @@ void test_merge_workdir_submodules__take_changed(void)
cl_git_pass
(
git_reference_lookup
(
&
our_ref
,
repo
,
"refs/heads/"
SUBMODULE_MAIN_BRANCH
));
cl_git_pass
(
git_commit_lookup
(
&
our_commit
,
repo
,
git_reference_target
(
our_ref
)));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
our_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_reference_lookup
(
&
their_ref
,
repo
,
"refs/heads/"
SUBMODULE_OTHER2_BRANCH
));
cl_git_pass
(
git_merge_head_from_ref
(
&
their_head
,
repo
,
their_ref
));
...
...
tests/reset/hard.c
View file @
586be3b8
...
...
@@ -71,7 +71,7 @@ void test_reset_hard__resetting_reverts_modified_files(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"26a125e"
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
for
(
i
=
0
;
i
<
4
;
++
i
)
{
cl_git_pass
(
git_buf_joinpath
(
&
path
,
wd
,
files
[
i
]));
...
...
@@ -96,7 +96,7 @@ void test_reset_hard__cannot_reset_in_a_bare_repository(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
bare
,
KNOWN_COMMIT_IN_BARE_REPO
));
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_reset
(
bare
,
target
,
GIT_RESET_HARD
));
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_reset
(
bare
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_repository_free
(
bare
);
}
...
...
@@ -152,7 +152,7 @@ void test_reset_hard__resetting_reverts_unmerged(void)
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"26a125e"
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_assert
(
git_path_exists
(
"status/conflicting_file"
)
==
0
);
...
...
@@ -183,7 +183,7 @@ void test_reset_hard__cleans_up_merge(void)
cl_git_mkfile
(
git_buf_cstr
(
&
orig_head_path
),
"0017bd4ab1ec30440b17bae1680cff124ab5f1f6"
);
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"0017bd4"
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_assert
(
!
git_path_exists
(
git_buf_cstr
(
&
merge_head_path
)));
cl_assert
(
!
git_path_exists
(
git_buf_cstr
(
&
merge_msg_path
)));
...
...
tests/reset/mixed.c
View file @
586be3b8
...
...
@@ -29,7 +29,7 @@ void test_reset_mixed__cannot_reset_in_a_bare_repository(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
bare
,
KNOWN_COMMIT_IN_BARE_REPO
));
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_reset
(
bare
,
target
,
GIT_RESET_MIXED
));
cl_assert_equal_i
(
GIT_EBAREREPO
,
git_reset
(
bare
,
target
,
GIT_RESET_MIXED
,
NULL
,
NULL
));
git_repository_free
(
bare
);
}
...
...
@@ -42,7 +42,7 @@ void test_reset_mixed__resetting_refreshes_the_index_to_the_commit_tree(void)
cl_assert
(
status
==
GIT_STATUS_CURRENT
);
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"605812a"
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_MIXED
,
NULL
,
NULL
));
cl_git_pass
(
git_status_file
(
&
status
,
repo
,
"macro_bad"
));
cl_assert
(
status
==
GIT_STATUS_WT_NEW
);
...
...
tests/reset/soft.c
View file @
586be3b8
...
...
@@ -30,7 +30,7 @@ static void assert_reset_soft(bool should_be_detached)
cl_assert
(
git_repository_head_detached
(
repo
)
==
should_be_detached
);
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_assert
(
git_repository_head_detached
(
repo
)
==
should_be_detached
);
...
...
@@ -61,7 +61,7 @@ void test_reset_soft__resetting_to_the_commit_pointed_at_by_the_Head_does_not_ch
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
raw_head_oid
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_git_pass
(
git_reference_name_to_id
(
&
oid
,
repo
,
"HEAD"
));
cl_git_pass
(
git_oid_streq
(
&
oid
,
raw_head_oid
));
...
...
@@ -74,7 +74,7 @@ void test_reset_soft__resetting_to_a_tag_sets_the_Head_to_the_peeled_commit(void
/* b25fa35 is a tag, pointing to another tag which points to commit e90810b */
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"b25fa35"
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_assert
(
git_repository_head_detached
(
repo
)
==
false
);
cl_git_pass
(
git_reference_name_to_id
(
&
oid
,
repo
,
"HEAD"
));
...
...
@@ -86,12 +86,12 @@ void test_reset_soft__cannot_reset_to_a_tag_not_pointing_at_a_commit(void)
/* 53fc32d is the tree of commit e90810b */
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"53fc32d"
));
cl_git_fail
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_fail
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
git_object_free
(
target
);
/* 521d87c is an annotated tag pointing to a blob */
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
"521d87c"
));
cl_git_fail
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_fail
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
}
void
test_reset_soft__resetting_against_an_unborn_head_repo_makes_the_head_no_longer_unborn
(
void
)
...
...
@@ -104,7 +104,7 @@ void test_reset_soft__resetting_against_an_unborn_head_repo_makes_the_head_no_lo
cl_assert_equal_i
(
true
,
git_repository_head_unborn
(
repo
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_git_pass
(
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_assert_equal_i
(
false
,
git_repository_head_unborn
(
repo
));
...
...
@@ -124,7 +124,7 @@ void test_reset_soft__fails_when_merging(void)
cl_git_pass
(
git_revparse_single
(
&
target
,
repo
,
KNOWN_COMMIT_IN_BARE_REPO
));
cl_assert_equal_i
(
GIT_EUNMERGED
,
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_assert_equal_i
(
GIT_EUNMERGED
,
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
cl_git_pass
(
p_unlink
(
git_buf_cstr
(
&
merge_head_path
)));
git_buf_free
(
&
merge_head_path
);
...
...
@@ -152,5 +152,5 @@ void test_reset_soft__fails_when_index_contains_conflicts_independently_of_MERGE
cl_git_pass
(
git_reference_peel
(
&
target
,
head
,
GIT_OBJ_COMMIT
));
git_reference_free
(
head
);
cl_assert_equal_i
(
GIT_EUNMERGED
,
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
));
cl_assert_equal_i
(
GIT_EUNMERGED
,
git_reset
(
repo
,
target
,
GIT_RESET_SOFT
,
NULL
,
NULL
));
}
tests/revert/workdir.c
View file @
586be3b8
...
...
@@ -41,7 +41,7 @@ void test_revert_workdir__automerge(void)
git_oid_fromstr
(
&
head_oid
,
"72333f47d4e83616630ff3b0ffe4c0faebcc3c45"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"d1d403d22cbe24592d725f442835cf46fe60c8ac"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -74,7 +74,7 @@ void test_revert_workdir__conflicts(void)
cl_git_pass
(
git_repository_head
(
&
head_ref
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
head
,
head_ref
,
GIT_OBJ_COMMIT
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
cl_git_pass
(
git_revert
(
repo
,
commit
,
NULL
));
...
...
@@ -125,7 +125,7 @@ void test_revert_workdir__orphan(void)
git_oid_fromstr
(
&
head_oid
,
"39467716290f6df775a91cdb9a4eb39295018145"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"ebb03002cee5d66c7732dd06241119fe72ab96a5"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -160,7 +160,7 @@ void test_revert_workdir__again(void)
cl_git_pass
(
git_repository_head
(
&
head_ref
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
orig_head
,
head_ref
,
GIT_OBJ_COMMIT
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
orig_head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
orig_head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_revert
(
repo
,
orig_head
,
NULL
));
...
...
@@ -208,7 +208,7 @@ void test_revert_workdir__again_after_automerge(void)
git_oid_fromstr
(
&
head_oid
,
"72333f47d4e83616630ff3b0ffe4c0faebcc3c45"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"d1d403d22cbe24592d725f442835cf46fe60c8ac"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -256,7 +256,7 @@ void test_revert_workdir__again_after_edit(void)
cl_git_pass
(
git_oid_fromstr
(
&
orig_head_oid
,
"399fb3aba3d9d13f7d40a9254ce4402067ef3149"
));
cl_git_pass
(
git_commit_lookup
(
&
orig_head
,
repo
,
&
orig_head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
orig_head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
orig_head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_oid_fromstr
(
&
revert_oid
,
"2d440f2b3147d3dc7ad1085813478d6d869d5a4d"
));
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -307,7 +307,7 @@ void test_revert_workdir__again_after_edit_two(void)
cl_git_pass
(
git_oid_fromstr
(
&
head_commit_oid
,
"e34ef1afe54eb526fd92eec66084125f340f1d65"
));
cl_git_pass
(
git_commit_lookup
(
&
head_commit
,
repo
,
&
head_commit_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head_commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head_commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_oid_fromstr
(
&
revert_commit_oid
,
"71eb9c2b53dbbf3c45fb28b27c850db4b7fb8011"
));
cl_git_pass
(
git_commit_lookup
(
&
revert_commit
,
repo
,
&
revert_commit_oid
));
...
...
@@ -360,7 +360,7 @@ void test_revert_workdir__conflict_use_ours(void)
git_oid_fromstr
(
&
head_oid
,
"72333f47d4e83616630ff3b0ffe4c0faebcc3c45"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"d1d403d22cbe24592d725f442835cf46fe60c8ac"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -396,7 +396,7 @@ void test_revert_workdir__rename_1_of_2(void)
git_oid_fromstr
(
&
head_oid
,
"cef56612d71a6af8d8015691e4865f7fece905b5"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"55568c8de5322ff9a95d72747a239cdb64a19965"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -430,7 +430,7 @@ void test_revert_workdir__rename(void)
git_oid_fromstr
(
&
head_oid
,
"55568c8de5322ff9a95d72747a239cdb64a19965"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
git_oid_fromstr
(
&
revert_oid
,
"0aa8c7e40d342fff78d60b29a4ba8e993ed79c51"
);
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
revert_oid
));
...
...
@@ -459,7 +459,7 @@ void test_revert_workdir__head(void)
/* HEAD is 2d440f2b3147d3dc7ad1085813478d6d869d5a4d */
cl_git_pass
(
git_repository_head
(
&
head
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
commit
,
head
,
GIT_OBJ_COMMIT
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
commit
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
commit
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_revert
(
repo
,
commit
,
NULL
));
cl_assert
(
merge_test_index
(
repo_index
,
merge_index_entries
,
4
));
...
...
@@ -496,7 +496,7 @@ void test_revert_workdir__merge_fails_without_mainline_specified(void)
git_oid_fromstr
(
&
head_oid
,
"5acdc74af27172ec491d213ee36cea7eb9ef2579"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_must_fail
(
git_revert
(
repo
,
head
,
NULL
));
cl_assert
(
!
git_path_exists
(
TEST_REPO_PATH
"/.git/MERGE_MSG"
));
...
...
@@ -523,7 +523,7 @@ void test_revert_workdir__merge_first_parent(void)
git_oid_fromstr
(
&
head_oid
,
"5acdc74af27172ec491d213ee36cea7eb9ef2579"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_revert
(
repo
,
head
,
&
opts
));
...
...
@@ -548,7 +548,7 @@ void test_revert_workdir__merge_second_parent(void)
git_oid_fromstr
(
&
head_oid
,
"5acdc74af27172ec491d213ee36cea7eb9ef2579"
);
cl_git_pass
(
git_commit_lookup
(
&
head
,
repo
,
&
head_oid
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
));
cl_git_pass
(
git_reset
(
repo
,
(
git_object
*
)
head
,
GIT_RESET_HARD
,
NULL
,
NULL
));
cl_git_pass
(
git_revert
(
repo
,
head
,
&
opts
));
...
...
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