repo.or.cz
/
git
/
gitweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add documentation for the rest of commands.
[git/gitweb.git]
/
tag.h
blob
eddfed6bf3b1cae1458b6ee9232d6c5ea12aad35
1
#ifndef TAG_H
2
#define TAG_H
3
4
#include
"object.h"
5
6
extern
const char
*
tag_type
;
7
8
struct
tag
{
9
struct
object object
;
10
struct
object
*
tagged
;
11
char
*
tag
;
12
char
*
signature
;
/* not actually implemented */
13
};
14
15
extern
struct
tag
*
lookup_tag
(
unsigned char
*
sha1
);
16
extern
int
parse_tag
(
struct
tag
*
item
);
17
18
#endif
/* TAG_H */