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
df86d43c
Commit
df86d43c
authored
Dec 05, 2014
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2747 from libgit2/cmn/notes-consistency
Notes API consistency fixes
parents
d43c7bd0
bfa6cdbf
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
21 deletions
+22
-21
CHANGELOG.md
+3
-0
include/git2/notes.h
+5
-7
src/notes.c
+1
-1
src/rebase.c
+2
-2
tests/notes/notes.c
+6
-6
tests/notes/notesref.c
+1
-1
tests/online/push.c
+2
-2
tests/rebase/merge.c
+2
-2
No files found.
CHANGELOG.md
View file @
df86d43c
...
@@ -108,6 +108,9 @@ v0.21 + 1
...
@@ -108,6 +108,9 @@ v0.21 + 1
*
Introduce git_note_author() and git_note_committer() to get the author
*
Introduce git_note_author() and git_note_committer() to get the author
and committer information on a git_note, respectively.
and committer information on a git_note, respectively.
*
git_note_create() has changed the position of the notes reference
name to match git_note_remove().
*
The THREADSAFE option to build libgit2 with threading support has
*
The THREADSAFE option to build libgit2 with threading support has
been flipped to be on by default.
been flipped to be on by default.
...
...
include/git2/notes.h
View file @
df86d43c
...
@@ -59,14 +59,12 @@ GIT_EXTERN(int) git_note_iterator_new(
...
@@ -59,14 +59,12 @@ GIT_EXTERN(int) git_note_iterator_new(
GIT_EXTERN
(
void
)
git_note_iterator_free
(
git_note_iterator
*
it
);
GIT_EXTERN
(
void
)
git_note_iterator_free
(
git_note_iterator
*
it
);
/**
/**
* Return
s
the current item (note_id and annotated_id) and advance the iterator
* Return the current item (note_id and annotated_id) and advance the iterator
* internally to the next value
* internally to the next value
*
*
* The notes must not be freed manually by the user.
*
* @param it pointer to the iterator
* @param note_id id of blob containing the message
* @param note_id id of blob containing the message
* @param annotated_id id of the git object being annotated
* @param annotated_id id of the git object being annotated
* @param it pointer to the iterator
*
*
* @return 0 (no error), GIT_ITEROVER (iteration is done) or an error code
* @return 0 (no error), GIT_ITEROVER (iteration is done) or an error code
* (negative value)
* (negative value)
...
@@ -135,10 +133,10 @@ GIT_EXTERN(const git_oid *) git_note_id(const git_note *note);
...
@@ -135,10 +133,10 @@ GIT_EXTERN(const git_oid *) git_note_id(const git_note *note);
*
*
* @param out pointer to store the OID (optional); NULL in case of error
* @param out pointer to store the OID (optional); NULL in case of error
* @param repo repository where to store the note
* @param repo repository where to store the note
* @param author signature of the notes commit author
* @param committer signature of the notes commit committer
* @param notes_ref canonical name of the reference to use (optional);
* @param notes_ref canonical name of the reference to use (optional);
* defaults to "refs/notes/commits"
* defaults to "refs/notes/commits"
* @param author signature of the notes commit author
* @param committer signature of the notes commit committer
* @param oid OID of the git object to decorate
* @param oid OID of the git object to decorate
* @param note Content of the note to add for object oid
* @param note Content of the note to add for object oid
* @param force Overwrite existing note
* @param force Overwrite existing note
...
@@ -148,9 +146,9 @@ GIT_EXTERN(const git_oid *) git_note_id(const git_note *note);
...
@@ -148,9 +146,9 @@ GIT_EXTERN(const git_oid *) git_note_id(const git_note *note);
GIT_EXTERN
(
int
)
git_note_create
(
GIT_EXTERN
(
int
)
git_note_create
(
git_oid
*
out
,
git_oid
*
out
,
git_repository
*
repo
,
git_repository
*
repo
,
const
char
*
notes_ref
,
const
git_signature
*
author
,
const
git_signature
*
author
,
const
git_signature
*
committer
,
const
git_signature
*
committer
,
const
char
*
notes_ref
,
const
git_oid
*
oid
,
const
git_oid
*
oid
,
const
char
*
note
,
const
char
*
note
,
int
force
);
int
force
);
...
...
src/notes.c
View file @
df86d43c
...
@@ -455,9 +455,9 @@ int git_note_read(git_note **out, git_repository *repo,
...
@@ -455,9 +455,9 @@ int git_note_read(git_note **out, git_repository *repo,
int
git_note_create
(
int
git_note_create
(
git_oid
*
out
,
git_oid
*
out
,
git_repository
*
repo
,
git_repository
*
repo
,
const
char
*
notes_ref
,
const
git_signature
*
author
,
const
git_signature
*
author
,
const
git_signature
*
committer
,
const
git_signature
*
committer
,
const
char
*
notes_ref
,
const
git_oid
*
oid
,
const
git_oid
*
oid
,
const
char
*
note
,
const
char
*
note
,
int
allow_note_overwrite
)
int
allow_note_overwrite
)
...
...
src/rebase.c
View file @
df86d43c
...
@@ -972,8 +972,8 @@ static int rebase_copy_note(
...
@@ -972,8 +972,8 @@ static int rebase_copy_note(
committer
=
who
;
committer
=
who
;
}
}
error
=
git_note_create
(
&
note_id
,
rebase
->
repo
,
git_note_author
(
note
)
,
error
=
git_note_create
(
&
note_id
,
rebase
->
repo
,
opts
->
rewrite_notes_ref
,
committer
,
opts
->
rewrite_notes_ref
,
to
,
git_note_message
(
note
),
0
);
git_note_author
(
note
),
committer
,
to
,
git_note_message
(
note
),
0
);
done
:
done
:
git_note_free
(
note
);
git_note_free
(
note
);
...
...
tests/notes/notes.c
View file @
df86d43c
...
@@ -34,7 +34,7 @@ static void create_note(git_oid *note_oid, const char *canonical_namespace, cons
...
@@ -34,7 +34,7 @@ static void create_note(git_oid *note_oid, const char *canonical_namespace, cons
git_oid
oid
;
git_oid
oid
;
cl_git_pass
(
git_oid_fromstr
(
&
oid
,
target_sha
));
cl_git_pass
(
git_oid_fromstr
(
&
oid
,
target_sha
));
cl_git_pass
(
git_note_create
(
note_oid
,
_repo
,
_sig
,
_sig
,
canonical_namespace
,
&
oid
,
message
,
0
));
cl_git_pass
(
git_note_create
(
note_oid
,
_repo
,
canonical_namespace
,
_sig
,
_sig
,
&
oid
,
message
,
0
));
}
}
static
struct
{
static
struct
{
...
@@ -195,12 +195,12 @@ void test_notes_notes__creating_a_note_on_a_target_which_already_has_one_returns
...
@@ -195,12 +195,12 @@ void test_notes_notes__creating_a_note_on_a_target_which_already_has_one_returns
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
create_note
(
&
note_oid
,
NULL
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello world
\n
"
);
create_note
(
&
note_oid
,
NULL
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello world
\n
"
);
error
=
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
NULL
,
&
target_oid
,
"hello world
\n
"
,
0
);
error
=
git_note_create
(
&
note_oid
,
_repo
,
NULL
,
_sig
,
_sig
,
&
target_oid
,
"hello world
\n
"
,
0
);
cl_git_fail
(
error
);
cl_git_fail
(
error
);
cl_assert_equal_i
(
GIT_EEXISTS
,
error
);
cl_assert_equal_i
(
GIT_EEXISTS
,
error
);
create_note
(
&
note_oid
,
"refs/notes/some/namespace"
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello world
\n
"
);
create_note
(
&
note_oid
,
"refs/notes/some/namespace"
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello world
\n
"
);
error
=
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
"refs/notes/some/namespace"
,
&
target_oid
,
"hello world
\n
"
,
0
);
error
=
git_note_create
(
&
note_oid
,
_repo
,
"refs/notes/some/namespace"
,
_sig
,
_sig
,
&
target_oid
,
"hello world
\n
"
,
0
);
cl_git_fail
(
error
);
cl_git_fail
(
error
);
cl_assert_equal_i
(
GIT_EEXISTS
,
error
);
cl_assert_equal_i
(
GIT_EEXISTS
,
error
);
}
}
...
@@ -214,13 +214,13 @@ void test_notes_notes__creating_a_note_on_a_target_can_overwrite_existing_note(v
...
@@ -214,13 +214,13 @@ void test_notes_notes__creating_a_note_on_a_target_can_overwrite_existing_note(v
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
create_note
(
&
note_oid
,
NULL
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello old world
\n
"
);
create_note
(
&
note_oid
,
NULL
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello old world
\n
"
);
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
NULL
,
&
target_oid
,
"hello new world
\n
"
,
1
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
NULL
,
_sig
,
_sig
,
&
target_oid
,
"hello new world
\n
"
,
1
));
cl_git_pass
(
git_note_read
(
&
note
,
_repo
,
NULL
,
&
target_oid
));
cl_git_pass
(
git_note_read
(
&
note
,
_repo
,
NULL
,
&
target_oid
));
assert_note_equal
(
note
,
"hello new world
\n
"
,
&
note_oid
);
assert_note_equal
(
note
,
"hello new world
\n
"
,
&
note_oid
);
create_note
(
&
note_oid
,
"refs/notes/some/namespace"
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello old world
\n
"
);
create_note
(
&
note_oid
,
"refs/notes/some/namespace"
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
,
"hello old world
\n
"
);
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
"refs/notes/some/namespace"
,
&
target_oid
,
"hello new ref world
\n
"
,
1
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
"refs/notes/some/namespace"
,
_sig
,
_sig
,
&
target_oid
,
"hello new ref world
\n
"
,
1
));
cl_git_pass
(
git_note_read
(
&
namespace_note
,
_repo
,
"refs/notes/some/namespace"
,
&
target_oid
));
cl_git_pass
(
git_note_read
(
&
namespace_note
,
_repo
,
"refs/notes/some/namespace"
,
&
target_oid
));
assert_note_equal
(
namespace_note
,
"hello new ref world
\n
"
,
&
note_oid
);
assert_note_equal
(
namespace_note
,
"hello new ref world
\n
"
,
&
note_oid
);
...
@@ -269,7 +269,7 @@ void test_notes_notes__can_insert_a_note_in_an_existing_fanout(void)
...
@@ -269,7 +269,7 @@ void test_notes_notes__can_insert_a_note_in_an_existing_fanout(void)
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
cl_git_pass
(
git_oid_fromstr
(
&
target_oid
,
"08b041783f40edfe12bb406c9c9a8a040177c125"
));
for
(
i
=
0
;
i
<
MESSAGES_COUNT
;
i
++
)
{
for
(
i
=
0
;
i
<
MESSAGES_COUNT
;
i
++
)
{
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
"refs/notes/fanout"
,
&
target_oid
,
messages
[
i
],
0
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
"refs/notes/fanout"
,
_sig
,
_sig
,
&
target_oid
,
messages
[
i
],
0
));
cl_git_pass
(
git_note_read
(
&
_note
,
_repo
,
"refs/notes/fanout"
,
&
target_oid
));
cl_git_pass
(
git_note_read
(
&
_note
,
_repo
,
"refs/notes/fanout"
,
&
target_oid
));
git_note_free
(
_note
);
git_note_free
(
_note
);
...
...
tests/notes/notesref.c
View file @
df86d43c
...
@@ -42,7 +42,7 @@ void test_notes_notesref__config_corenotesref(void)
...
@@ -42,7 +42,7 @@ void test_notes_notesref__config_corenotesref(void)
cl_git_pass
(
git_config_set_string
(
_cfg
,
"core.notesRef"
,
"refs/notes/mydefaultnotesref"
));
cl_git_pass
(
git_config_set_string
(
_cfg
,
"core.notesRef"
,
"refs/notes/mydefaultnotesref"
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
_sig
,
_sig
,
NULL
,
&
oid
,
"test123test
\n
"
,
0
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
NULL
,
_sig
,
_sig
,
&
oid
,
"test123test
\n
"
,
0
));
cl_git_pass
(
git_note_read
(
&
_note
,
_repo
,
NULL
,
&
oid
));
cl_git_pass
(
git_note_read
(
&
_note
,
_repo
,
NULL
,
&
oid
));
cl_assert_equal_s
(
"test123test
\n
"
,
git_note_message
(
_note
));
cl_assert_equal_s
(
"test123test
\n
"
,
git_note_message
(
_note
));
...
...
tests/online/push.c
View file @
df86d43c
...
@@ -863,7 +863,7 @@ void test_online_push__notes(void)
...
@@ -863,7 +863,7 @@ void test_online_push__notes(void)
/* Create note to push */
/* Create note to push */
cl_git_pass
(
git_signature_new
(
&
signature
,
"nulltoken"
,
"emeric.fermas@gmail.com"
,
1323847743
,
60
));
/* Wed Dec 14 08:29:03 2011 +0100 */
cl_git_pass
(
git_signature_new
(
&
signature
,
"nulltoken"
,
"emeric.fermas@gmail.com"
,
1323847743
,
60
));
/* Wed Dec 14 08:29:03 2011 +0100 */
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
signature
,
signature
,
NULL
,
target_oid
,
"hello world
\n
"
,
0
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
NULL
,
signature
,
signature
,
target_oid
,
"hello world
\n
"
,
0
));
do_push
(
specs
,
ARRAY_SIZE
(
specs
),
do_push
(
specs
,
ARRAY_SIZE
(
specs
),
exp_stats
,
ARRAY_SIZE
(
exp_stats
),
exp_stats
,
ARRAY_SIZE
(
exp_stats
),
...
@@ -895,7 +895,7 @@ void test_online_push__configured(void)
...
@@ -895,7 +895,7 @@ void test_online_push__configured(void)
/* Create note to push */
/* Create note to push */
cl_git_pass
(
git_signature_new
(
&
signature
,
"nulltoken"
,
"emeric.fermas@gmail.com"
,
1323847743
,
60
));
/* Wed Dec 14 08:29:03 2011 +0100 */
cl_git_pass
(
git_signature_new
(
&
signature
,
"nulltoken"
,
"emeric.fermas@gmail.com"
,
1323847743
,
60
));
/* Wed Dec 14 08:29:03 2011 +0100 */
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
signature
,
signature
,
NULL
,
target_oid
,
"hello world
\n
"
,
0
));
cl_git_pass
(
git_note_create
(
&
note_oid
,
_repo
,
NULL
,
signature
,
signature
,
target_oid
,
"hello world
\n
"
,
0
));
do_push
(
NULL
,
0
,
do_push
(
NULL
,
0
,
exp_stats
,
ARRAY_SIZE
(
exp_stats
),
exp_stats
,
ARRAY_SIZE
(
exp_stats
),
...
...
tests/rebase/merge.c
View file @
df86d43c
...
@@ -416,9 +416,9 @@ static void test_copy_note(
...
@@ -416,9 +416,9 @@ static void test_copy_note(
branch_ref
,
GIT_OBJ_COMMIT
));
branch_ref
,
GIT_OBJ_COMMIT
));
/* Add a note to a commit */
/* Add a note to a commit */
cl_git_pass
(
git_note_create
(
&
note_id
,
repo
,
cl_git_pass
(
git_note_create
(
&
note_id
,
repo
,
"refs/notes/test"
,
git_commit_author
(
branch_commit
),
git_commit_committer
(
branch_commit
),
git_commit_author
(
branch_commit
),
git_commit_committer
(
branch_commit
),
"refs/notes/test"
,
git_commit_id
(
branch_commit
),
git_commit_id
(
branch_commit
),
"This is a commit note."
,
0
));
"This is a commit note."
,
0
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
NULL
,
signature
,
opts
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
NULL
,
signature
,
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