]> git.ipfire.org Git - thirdparty/git.git/blobdiff - sequencer.h
ls-tree: fold "show_tree_data" into "cb" struct
[thirdparty/git.git] / sequencer.h
index 563fe5993340a0d0a18b148d4280c1d5a3f8d307..888c18aad7188e48985eb5c994b13853dc30c137 100644 (file)
@@ -63,6 +63,9 @@ struct replay_opts {
        char **xopts;
        size_t xopts_nr, xopts_alloc;
 
+       /* Reflog */
+       char *reflog_action;
+
        /* Used by fixup/squash */
        struct strbuf current_fixups;
        int current_fixup_count;
@@ -73,6 +76,9 @@ struct replay_opts {
 
        /* Only used by REPLAY_NONE */
        struct rev_info *revs;
+
+       /* Private use */
+       const char *reflog_message;
 };
 #define REPLAY_OPTS_INIT { .edit = -1, .action = -1, .current_fixups = STRBUF_INIT }