forked from jonas/tig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefs.h
45 lines (38 loc) · 1.61 KB
/
refs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Copyright (c) 2006-2013 Jonas Fonseca <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef TIG_REFS_H
#define TIG_REFS_H
#include "tig.h"
struct ref {
char id[SIZEOF_REV]; /* Commit SHA1 ID */
unsigned int head:1; /* Is it the current HEAD? */
unsigned int tag:1; /* Is it a tag? */
unsigned int ltag:1; /* If so, is the tag local? */
unsigned int remote:1; /* Is it a remote ref? */
unsigned int replace:1; /* Is it a replace ref? */
unsigned int tracked:1; /* Is it the remote for the current HEAD? */
unsigned int valid:1; /* Is the ref still valid? */
char name[1]; /* Ref name; tag or head names are shortened. */
};
struct ref_list {
char id[SIZEOF_REV]; /* Commit SHA1 ID */
size_t size; /* Number of refs. */
struct ref **refs; /* References for this ID. */
};
struct ref *get_ref_head();
struct ref_list *get_ref_list(const char *id);
void foreach_ref(bool (*visitor)(void *data, const struct ref *ref), void *data);
int reload_refs(const char *git_dir, const char *remote_name, char *head, size_t headlen);
int add_ref(const char *id, char *name, const char *remote_name, const char *head);
#endif
/* vim: set ts=8 sw=8 noexpandtab: */