]> git.ipfire.org Git - thirdparty/git.git/blame - notes.h
fast-import: introduce "feature notes" command
[thirdparty/git.git] / notes.h
CommitLineData
a97a7468
JS
1#ifndef NOTES_H
2#define NOTES_H
3
27d57564
JH
4/* Free (and de-initialize) the internal notes tree structure */
5void free_notes(void);
6
c56fcc89
JH
7#define NOTES_SHOW_HEADER 1
8#define NOTES_INDENT 2
9
a97a7468 10void get_commit_notes(const struct commit *commit, struct strbuf *sb,
c56fcc89 11 const char *output_encoding, int flags);
a97a7468
JS
12
13#endif