X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=refs.h;h=06ad26055661a9b9e475d0f8a7bd6d1cfb42e792;hb=daae06259556246959963947752bde4ee2df7b44;hp=06abee15266cc3b234ec64cd27362c482874e54b;hpb=1c536069780bc67c05e621f0485f787d04559f24;p=git.git diff --git a/refs.h b/refs.h index 06abee152..06ad26055 100644 --- a/refs.h +++ b/refs.h @@ -24,6 +24,15 @@ extern int for_each_tag_ref(each_ref_fn, void *); extern int for_each_branch_ref(each_ref_fn, void *); extern int for_each_remote_ref(each_ref_fn, void *); +/* + * Extra refs will be listed by for_each_ref() before any actual refs + * for the duration of this process or until clear_extra_refs() is + * called. Only extra refs added before for_each_ref() is called will + * be listed on a given call of for_each_ref(). + */ +extern void add_extra_ref(const char *refname, const unsigned char *sha1, int flags); +extern void clear_extra_refs(void); + extern int peel_ref(const char *, unsigned char *); /** Locks a "refs/" ref returning the lock on success and NULL on failure. **/