MCPcopy Create free account
hub / github.com/git/git / is_fixup_flag

Function is_fixup_flag

sequencer.c:1895–1899  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1893static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits.");
1894
1895static int is_fixup_flag(enum todo_command command, unsigned flag)
1896{
1897 return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) ||
1898 (flag & TODO_EDIT_FIXUP_MSG));
1899}
1900
1901/*
1902 * Wrapper around strbuf_add_commented_lines() which avoids double

Callers 2

append_squash_messageFunction · 0.85
update_squash_messagesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected