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
b81cc1d6
Commit
b81cc1d6
authored
May 18, 2013
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag: Introduce git_tag_annotation_create()
parent
5b3d52ce
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
0 deletions
+82
-0
include/git2/tag.h
+31
-0
src/tag.c
+13
-0
tests-clar/object/tag/write.c
+38
-0
No files found.
include/git2/tag.h
View file @
b81cc1d6
...
...
@@ -178,6 +178,37 @@ GIT_EXTERN(int) git_tag_create(
int
force
);
/**
* Create a new tag in the object database pointing to a git_object
*
* The message will not be cleaned up. This can be achieved
* through `git_message_prettify()`.
*
* @param oid Pointer where to store the OID of the
* newly created tag
*
* @param repo Repository where to store the tag
*
* @param tag_name Name for the tag
*
* @param target Object to which this tag points. This object
* must belong to the given `repo`.
*
* @param tagger Signature of the tagger for this tag, and
* of the tagging time
*
* @param message Full message for this tag
*
* @return 0 on success or an error code
*/
GIT_EXTERN
(
int
)
git_tag_annotation_create
(
git_oid
*
oid
,
git_repository
*
repo
,
const
char
*
tag_name
,
const
git_object
*
target
,
const
git_signature
*
tagger
,
const
char
*
message
);
/**
* Create a new tag in the repository from a buffer
*
* @param oid Pointer where to store the OID of the newly created tag
...
...
src/tag.c
View file @
b81cc1d6
...
...
@@ -291,6 +291,19 @@ int git_tag_create(
return
git_tag_create__internal
(
oid
,
repo
,
tag_name
,
target
,
tagger
,
message
,
allow_ref_overwrite
,
1
);
}
int
git_tag_annotation_create
(
git_oid
*
oid
,
git_repository
*
repo
,
const
char
*
tag_name
,
const
git_object
*
target
,
const
git_signature
*
tagger
,
const
char
*
message
)
{
assert
(
oid
&&
repo
&&
tag_name
&&
target
&&
tagger
&&
message
);
return
write_tag_annotation
(
oid
,
repo
,
tag_name
,
target
,
tagger
,
message
);
}
int
git_tag_create_lightweight
(
git_oid
*
oid
,
git_repository
*
repo
,
...
...
tests-clar/object/tag/write.c
View file @
b81cc1d6
...
...
@@ -220,3 +220,41 @@ void test_object_tag_write__deleting_with_an_invalid_name_returns_EINVALIDSPEC(v
{
cl_assert_equal_i
(
GIT_EINVALIDSPEC
,
git_tag_delete
(
g_repo
,
"Inv@{id"
));
}
void
create_annotation
(
git_oid
*
tag_id
,
const
char
*
name
)
{
git_object
*
target
;
git_oid
target_id
;
git_signature
*
tagger
;
cl_git_pass
(
git_signature_new
(
&
tagger
,
tagger_name
,
tagger_email
,
123456789
,
60
));
git_oid_fromstr
(
&
target_id
,
tagged_commit
);
cl_git_pass
(
git_object_lookup
(
&
target
,
g_repo
,
&
target_id
,
GIT_OBJ_COMMIT
));
cl_git_pass
(
git_tag_annotation_create
(
tag_id
,
g_repo
,
name
,
target
,
tagger
,
"boom!"
));
git_object_free
(
target
);
git_signature_free
(
tagger
);
}
void
test_object_tag_write__creating_an_annotation_stores_the_new_object_in_the_odb
(
void
)
{
git_oid
tag_id
;
git_tag
*
tag
;
create_annotation
(
&
tag_id
,
"new_tag"
);
cl_git_pass
(
git_tag_lookup
(
&
tag
,
g_repo
,
&
tag_id
));
cl_assert_equal_s
(
"new_tag"
,
git_tag_name
(
tag
));
git_tag_free
(
tag
);
}
void
test_object_tag_write__creating_an_annotation_does_not_create_a_reference
(
void
)
{
git_oid
tag_id
;
git_reference
*
tag_ref
;
create_annotation
(
&
tag_id
,
"new_tag"
);
cl_git_fail_with
(
git_reference_lookup
(
&
tag_ref
,
g_repo
,
"refs/tags/new_tag"
),
GIT_ENOTFOUND
);
}
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