]> git.ipfire.org Git - thirdparty/git.git/commit - builtin.h
Make git tag a builtin.
authorCarlos Rica <jasampler@gmail.com>
Thu, 19 Jul 2007 23:42:28 +0000 (01:42 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 20 Jul 2007 08:27:25 +0000 (01:27 -0700)
commit62e09ce998dd7f6b844deb650101c743a5c4ce50
tree52c07796bf8f749e5270f2b421fc74daaed3c492
parent69a9b41c15f25e1e91df5d9c4d5e3d56706f8f0e
Make git tag a builtin.

This replaces the script "git-tag.sh" with "builtin-tag.c".

The existing test suite for "git tag" guarantees the compatibility
with the features provided by the script version.

There are some minor changes in the behaviour of "git tag" here:
"git tag -v" now can get more than one tag to verify, like "git tag -d" does,
"git tag" with no arguments prints all tags, more like "git branch" does,
and "git tag -n" also prints all tags with annotations (without needing -l).
Tests and documentation were also updated to reflect these changes.

The program is currently calling the script "git verify-tag" for verify.
This can be changed porting it to C and calling its functions directly
from builtin-tag.c.

Signed-off-by: Carlos Rica <jasampler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-tag.txt
Makefile
builtin-tag.c [new file with mode: 0644]
builtin.h
contrib/examples/git-tag.sh [moved from git-tag.sh with 100% similarity]
git.c
t/t7004-tag.sh