15 enum trailer_if_exists
{
17 EXISTS_ADD_IF_DIFFERENT_NEIGHBOR
,
18 EXISTS_ADD_IF_DIFFERENT
,
23 enum trailer_if_missing
{
29 int trailer_set_where(enum trailer_where
*item
, const char *value
);
30 int trailer_set_if_exists(enum trailer_if_exists
*item
, const char *value
);
31 int trailer_set_if_missing(enum trailer_if_missing
*item
, const char *value
);
35 * True if there is a blank line before the location pointed to by
38 int blank_line_before_trailer
;
41 * Pointers to the start and end of the trailer block found. If there
42 * is no trailer block found, these 2 pointers point to the end of the
45 const char *trailer_start
, *trailer_end
;
48 * Array of trailers found.
55 * A list that represents newly-added trailers, such as those provided
56 * with the --trailer command line option of git-interpret-trailers.
58 struct new_trailer_item
{
59 struct list_head list
;
63 enum trailer_where where
;
64 enum trailer_if_exists if_exists
;
65 enum trailer_if_missing if_missing
;
68 struct process_trailer_options
{
76 const struct strbuf
*separator
;
77 int (*filter
)(const struct strbuf
*, void *);
81 #define PROCESS_TRAILER_OPTIONS_INIT {0}
83 void process_trailers(const char *file
,
84 const struct process_trailer_options
*opts
,
85 struct list_head
*new_trailer_head
);
87 void trailer_info_get(struct trailer_info
*info
, const char *str
,
88 const struct process_trailer_options
*opts
);
90 void trailer_info_release(struct trailer_info
*info
);
93 * Format the trailers from the commit msg "msg" into the strbuf "out".
94 * Note two caveats about "opts":
96 * - this is primarily a helper for pretty.c, and not
97 * all of the flags are supported.
99 * - this differs from process_trailers slightly in that we always format
100 * only the trailer block itself, even if the "only_trailers" option is not
103 void format_trailers_from_commit(struct strbuf
*out
, const char *msg
,
104 const struct process_trailer_options
*opts
);
106 #endif /* TRAILER_H */