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
bf4c39f9
Commit
bf4c39f9
authored
Mar 30, 2011
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent tag_create() from creating a conflicting reference
parent
6d316014
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
8 deletions
+42
-8
include/git2/tag.h
+2
-1
src/tag.c
+11
-7
tests/t08-tag.c
+29
-0
No files found.
include/git2/tag.h
View file @
bf4c39f9
...
@@ -140,7 +140,8 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *t);
...
@@ -140,7 +140,8 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *t);
* @param repo Repository where to store the tag
* @param repo Repository where to store the tag
*
*
* @param tag_name Name for the tag; this name is validated
* @param tag_name Name for the tag; this name is validated
* for consistency
* for consistency. It should also not conflict with an
* already existing tag name
*
*
* @param target OID to which this tag points; note that no
* @param target OID to which this tag points; note that no
* validation is done on this OID. Use the _o version of this
* validation is done on this OID. Use the _o version of this
...
...
src/tag.c
View file @
bf4c39f9
...
@@ -182,10 +182,18 @@ int git_tag_create(
...
@@ -182,10 +182,18 @@ int git_tag_create(
const
char
*
type_str
;
const
char
*
type_str
;
char
*
tagger_str
;
char
*
tagger_str
;
git_reference
*
new_ref
;
char
ref_name
[
MAX_GITDIR_TREE_STRUCTURE_PATH_LENGTH
];
int
type_str_len
,
tag_name_len
,
tagger_str_len
,
message_len
;
int
type_str_len
,
tag_name_len
,
tagger_str_len
,
message_len
;
int
error
;
int
error
;
/** Ensure the tag name doesn't conflict with an already existing reference **/
git__joinpath
(
ref_name
,
GIT_REFS_TAGS_DIR
,
tag_name
);
if
(
!
git_reference_lookup
(
&
new_ref
,
repo
,
ref_name
))
return
GIT_EEXISTS
;
type_str
=
git_object_type2string
(
target_type
);
type_str
=
git_object_type2string
(
target_type
);
...
@@ -223,14 +231,10 @@ int git_tag_create(
...
@@ -223,14 +231,10 @@ int git_tag_create(
error
=
stream
->
finalize_write
(
oid
,
stream
);
error
=
stream
->
finalize_write
(
oid
,
stream
);
stream
->
free
(
stream
);
stream
->
free
(
stream
);
if
(
error
==
GIT_SUCCESS
)
{
if
(
error
<
GIT_SUCCESS
)
char
ref_name
[
512
];
git_reference
*
new_ref
;
git__joinpath
(
ref_name
,
GIT_REFS_TAGS_DIR
,
tag_name
);
error
=
git_reference_create_oid
(
&
new_ref
,
repo
,
ref_name
,
oid
);
}
return
error
;
return
error
;
return
git_reference_create_oid
(
&
new_ref
,
repo
,
ref_name
,
oid
);
}
}
...
...
tests/t08-tag.c
View file @
bf4c39f9
...
@@ -156,9 +156,38 @@ BEGIN_TEST(write1, "write a tag to the repository which points to an unknown oid
...
@@ -156,9 +156,38 @@ BEGIN_TEST(write1, "write a tag to the repository which points to an unknown oid
END_TEST
END_TEST
BEGIN_TEST
(
write2
,
"Attempt to write a tag bearing the same name than an already existing tag"
)
git_repository
*
repo
;
git_oid
target_id
,
tag_id
;
const
git_signature
*
tagger
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
git_oid_mkstr
(
&
target_id
,
tagged_commit
);
/* create signature */
tagger
=
git_signature_new
(
TAGGER_NAME
,
TAGGER_EMAIL
,
123456789
,
60
);
must_be_true
(
tagger
!=
NULL
);
must_fail
(
git_tag_create
(
&
tag_id
,
/* out id */
repo
,
"very-simple"
,
&
target_id
,
GIT_OBJ_COMMIT
,
tagger
,
TAGGER_MESSAGE
));
git_signature_free
((
git_signature
*
)
tagger
);
git_repository_free
(
repo
);
END_TEST
BEGIN_SUITE
(
tag
)
BEGIN_SUITE
(
tag
)
ADD_TEST
(
read0
);
ADD_TEST
(
read0
);
ADD_TEST
(
write0
);
ADD_TEST
(
write0
);
ADD_TEST
(
write1
);
ADD_TEST
(
write1
);
ADD_TEST
(
write2
);
END_SUITE
END_SUITE
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