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
a3622ba6
Commit
a3622ba6
authored
May 16, 2014
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move GIT_MERGE_CONFIG_* to its own enum
parent
d362093f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
43 deletions
+61
-43
include/git2/merge.h
+11
-3
src/merge.c
+12
-9
tests/merge/workdir/analysis.c
+38
-31
No files found.
include/git2/merge.h
View file @
a3622ba6
...
...
@@ -266,19 +266,26 @@ typedef enum {
* to simply set HEAD to the target commit(s).
*/
GIT_MERGE_ANALYSIS_UNBORN
=
(
1
<<
3
),
}
git_merge_analysis_t
;
typedef
enum
{
/*
* No configuration was found that suggests a behavior for merge.
*/
GIT_MERGE_CONFIG_NONE
=
0
,
/**
* There is a `merge.ff=false` configuration setting, suggesting that
* the user does not want to allow a fast-forward merge.
*/
GIT_MERGE_CONFIG_NO_FASTFORWARD
=
(
1
<<
4
),
GIT_MERGE_CONFIG_NO_FASTFORWARD
=
(
1
<<
0
),
/**
* There is a `merge.ff=only` configuration setting, suggesting that
* the user only wants fast-forward merges.
*/
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
=
(
1
<<
5
),
}
git_merge_
analysis
_t
;
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
=
(
1
<<
1
),
}
git_merge_
config
_t
;
/**
* Analyzes the given branch(es) and determines the opportunities for
...
...
@@ -292,6 +299,7 @@ typedef enum {
*/
GIT_EXTERN
(
int
)
git_merge_analysis
(
git_merge_analysis_t
*
analysis_out
,
git_merge_config_t
*
config_out
,
git_repository
*
repo
,
const
git_merge_head
**
their_heads
,
size_t
their_heads_len
);
...
...
src/merge.c
View file @
a3622ba6
...
...
@@ -2564,12 +2564,14 @@ done:
return
error
;
}
int
analysis_config
(
git_merge_analysis
_t
*
out
,
git_repository
*
repo
)
int
merge_config
(
git_merge_config
_t
*
out
,
git_repository
*
repo
)
{
git_config
*
config
;
const
char
*
value
;
int
bool_value
,
error
=
0
;
*
out
=
GIT_MERGE_CONFIG_NONE
;
if
((
error
=
git_repository_config
(
&
config
,
repo
))
<
0
)
goto
done
;
...
...
@@ -2596,7 +2598,8 @@ done:
}
int
git_merge_analysis
(
git_merge_analysis_t
*
out
,
git_merge_analysis_t
*
analysis_out
,
git_merge_config_t
*
config_out
,
git_repository
*
repo
,
const
git_merge_head
**
their_heads
,
size_t
their_heads_len
)
...
...
@@ -2604,7 +2607,7 @@ int git_merge_analysis(
git_merge_head
*
ancestor_head
=
NULL
,
*
our_head
=
NULL
;
int
error
=
0
;
assert
(
out
&&
repo
&&
their_heads
);
assert
(
analysis_out
&&
config_
out
&&
repo
&&
their_heads
);
if
(
their_heads_len
!=
1
)
{
giterr_set
(
GITERR_MERGE
,
"Can only merge a single branch"
);
...
...
@@ -2612,13 +2615,13 @@ int git_merge_analysis(
goto
done
;
}
*
out
=
GIT_MERGE_ANALYSIS_NONE
;
*
analysis_
out
=
GIT_MERGE_ANALYSIS_NONE
;
if
((
error
=
analysis_config
(
out
,
repo
))
<
0
)
if
((
error
=
merge_config
(
config_
out
,
repo
))
<
0
)
goto
done
;
if
(
git_repository_head_unborn
(
repo
))
{
*
out
|=
GIT_MERGE_ANALYSIS_FASTFORWARD
|
GIT_MERGE_ANALYSIS_UNBORN
;
*
analysis_
out
|=
GIT_MERGE_ANALYSIS_FASTFORWARD
|
GIT_MERGE_ANALYSIS_UNBORN
;
goto
done
;
}
...
...
@@ -2627,15 +2630,15 @@ int git_merge_analysis(
/* We're up-to-date if we're trying to merge our own common ancestor. */
if
(
ancestor_head
&&
git_oid_equal
(
&
ancestor_head
->
oid
,
&
their_heads
[
0
]
->
oid
))
*
out
|=
GIT_MERGE_ANALYSIS_UP_TO_DATE
;
*
analysis_
out
|=
GIT_MERGE_ANALYSIS_UP_TO_DATE
;
/* We're fastforwardable if we're our own common ancestor. */
else
if
(
ancestor_head
&&
git_oid_equal
(
&
ancestor_head
->
oid
,
&
our_head
->
oid
))
*
out
|=
GIT_MERGE_ANALYSIS_FASTFORWARD
|
GIT_MERGE_ANALYSIS_NORMAL
;
*
analysis_
out
|=
GIT_MERGE_ANALYSIS_FASTFORWARD
|
GIT_MERGE_ANALYSIS_NORMAL
;
/* Otherwise, just a normal merge is possible. */
else
*
out
|=
GIT_MERGE_ANALYSIS_NORMAL
;
*
analysis_
out
|=
GIT_MERGE_ANALYSIS_NORMAL
;
done:
git_merge_head_free
(
ancestor_head
);
...
...
tests/merge/workdir/analysis.c
View file @
a3622ba6
...
...
@@ -36,71 +36,76 @@ void test_merge_workdir_analysis__cleanup(void)
cl_git_sandbox_cleanup
();
}
static
git_merge_analysis_t
analysis_from_branch
(
const
char
*
branchname
)
static
void
analysis_from_branch
(
git_merge_analysis_t
*
merge_analysis
,
git_merge_config_t
*
merge_config
,
const
char
*
branchname
)
{
git_buf
refname
=
GIT_BUF_INIT
;
git_reference
*
their_ref
;
git_merge_head
*
their_head
;
git_merge_analysis_t
analysis
;
git_buf_printf
(
&
refname
,
"%s%s"
,
GIT_REFS_HEADS_DIR
,
branchname
);
cl_git_pass
(
git_reference_lookup
(
&
their_ref
,
repo
,
git_buf_cstr
(
&
refname
)));
cl_git_pass
(
git_merge_head_from_ref
(
&
their_head
,
repo
,
their_ref
));
cl_git_pass
(
git_merge_analysis
(
&
analysis
,
repo
,
(
const
git_merge_head
**
)
&
their_head
,
1
));
cl_git_pass
(
git_merge_analysis
(
merge_analysis
,
merge_config
,
repo
,
(
const
git_merge_head
**
)
&
their_head
,
1
));
git_buf_free
(
&
refname
);
git_merge_head_free
(
their_head
);
git_reference_free
(
their_ref
);
return
analysis
;
}
void
test_merge_workdir_analysis__fastforward
(
void
)
{
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
analysis
=
analysis_from_branch
(
FASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
FASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
}
void
test_merge_workdir_analysis__no_fastforward
(
void
)
{
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
analysis
=
analysis_from_branch
(
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
analysis
);
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
merge_
analysis
);
}
void
test_merge_workdir_analysis__uptodate
(
void
)
{
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
analysis
=
analysis_from_branch
(
UPTODATE_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UP_TO_DATE
,
analysis
);
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
UPTODATE_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UP_TO_DATE
,
merge_
analysis
);
}
void
test_merge_workdir_analysis__uptodate_merging_prev_commit
(
void
)
{
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
analysis
=
analysis_from_branch
(
PREVIOUS_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UP_TO_DATE
,
analysis
);
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
PREVIOUS_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UP_TO_DATE
,
merge_
analysis
);
}
void
test_merge_workdir_analysis__unborn
(
void
)
{
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
git_buf
master
=
GIT_BUF_INIT
;
git_buf_joinpath
(
&
master
,
git_repository_path
(
repo
),
"refs/heads/master"
);
p_unlink
(
git_buf_cstr
(
&
master
));
analysis
=
analysis_from_branch
(
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UNBORN
,
(
analysis
&
GIT_MERGE_ANALYSIS_UNBORN
));
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_UNBORN
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_UNBORN
));
git_buf_free
(
&
master
);
}
...
...
@@ -108,26 +113,28 @@ void test_merge_workdir_analysis__unborn(void)
void
test_merge_workdir_analysis__fastforward_with_config_noff
(
void
)
{
git_config
*
config
;
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
git_repository_config
(
&
config
,
repo
);
git_config_set_string
(
config
,
"merge.ff"
,
"false"
);
analysis
=
analysis_from_branch
(
FASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
cl_assert_equal_i
(
GIT_MERGE_CONFIG_NO_FASTFORWARD
,
(
analysis
&
GIT_MERGE_CONFIG_NO_FASTFORWARD
));
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
FASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_FASTFORWARD
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_FASTFORWARD
));
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
cl_assert_equal_i
(
GIT_MERGE_CONFIG_NO_FASTFORWARD
,
(
merge_config
&
GIT_MERGE_CONFIG_NO_FASTFORWARD
));
}
void
test_merge_workdir_analysis__no_fastforward_with_config_ffonly
(
void
)
{
git_config
*
config
;
git_merge_analysis_t
analysis
;
git_merge_analysis_t
merge_analysis
;
git_merge_config_t
merge_config
;
git_repository_config
(
&
config
,
repo
);
git_config_set_string
(
config
,
"merge.ff"
,
"only"
);
analysis
=
analysis_from_branch
(
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
cl_assert_equal_i
(
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
,
(
analysis
&
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
));
analysis
_from_branch
(
&
merge_analysis
,
&
merge_config
,
NOFASTFORWARD_BRANCH
);
cl_assert_equal_i
(
GIT_MERGE_ANALYSIS_NORMAL
,
(
merge_
analysis
&
GIT_MERGE_ANALYSIS_NORMAL
));
cl_assert_equal_i
(
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
,
(
merge_config
&
GIT_MERGE_CONFIG_FASTFORWARD_ONLY
));
}
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