]> git.ipfire.org Git - thirdparty/git.git/blob - advice.h
Merge branch 'jt/t5500-unflake'
[thirdparty/git.git] / advice.h
1 #ifndef ADVICE_H
2 #define ADVICE_H
3
4 #include "git-compat-util.h"
5
6 extern int advice_fetch_show_forced_updates;
7 extern int advice_push_update_rejected;
8 extern int advice_push_non_ff_current;
9 extern int advice_push_non_ff_matching;
10 extern int advice_push_already_exists;
11 extern int advice_push_fetch_first;
12 extern int advice_push_needs_force;
13 extern int advice_push_unqualified_ref_name;
14 extern int advice_status_hints;
15 extern int advice_status_u_option;
16 extern int advice_status_ahead_behind_warning;
17 extern int advice_commit_before_merge;
18 extern int advice_reset_quiet_warning;
19 extern int advice_resolve_conflict;
20 extern int advice_sequencer_in_use;
21 extern int advice_implicit_identity;
22 extern int advice_detached_head;
23 extern int advice_set_upstream_failure;
24 extern int advice_object_name_warning;
25 extern int advice_amworkdir;
26 extern int advice_rm_hints;
27 extern int advice_add_embedded_repo;
28 extern int advice_ignored_hook;
29 extern int advice_waiting_for_editor;
30 extern int advice_graft_file_deprecated;
31 extern int advice_checkout_ambiguous_remote_branch_name;
32 extern int advice_submodule_alternate_error_strategy_die;
33 extern int advice_add_ignored_file;
34 extern int advice_add_empty_pathspec;
35
36 /*
37 * To add a new advice, you need to:
38 * Define a new advice_type.
39 * Add a new entry to advice_setting array.
40 * Add the new config variable to Documentation/config/advice.txt.
41 * Call advise_if_enabled to print your advice.
42 */
43 enum advice_type {
44 ADVICE_ADD_EMBEDDED_REPO,
45 ADVICE_AM_WORK_DIR,
46 ADVICE_CHECKOUT_AMBIGUOUS_REMOTE_BRANCH_NAME,
47 ADVICE_COMMIT_BEFORE_MERGE,
48 ADVICE_DETACHED_HEAD,
49 ADVICE_FETCH_SHOW_FORCED_UPDATES,
50 ADVICE_GRAFT_FILE_DEPRECATED,
51 ADVICE_IGNORED_HOOK,
52 ADVICE_IMPLICIT_IDENTITY,
53 ADVICE_NESTED_TAG,
54 ADVICE_OBJECT_NAME_WARNING,
55 ADVICE_PUSH_ALREADY_EXISTS,
56 ADVICE_PUSH_FETCH_FIRST,
57 ADVICE_PUSH_NEEDS_FORCE,
58 ADVICE_PUSH_NON_FF_CURRENT,
59 ADVICE_PUSH_NON_FF_MATCHING,
60 ADVICE_PUSH_UNQUALIFIED_REF_NAME,
61 ADVICE_PUSH_UPDATE_REJECTED_ALIAS,
62 ADVICE_PUSH_UPDATE_REJECTED,
63 ADVICE_RESET_QUIET_WARNING,
64 ADVICE_RESOLVE_CONFLICT,
65 ADVICE_RM_HINTS,
66 ADVICE_SEQUENCER_IN_USE,
67 ADVICE_SET_UPSTREAM_FAILURE,
68 ADVICE_STATUS_AHEAD_BEHIND_WARNING,
69 ADVICE_STATUS_HINTS,
70 ADVICE_STATUS_U_OPTION,
71 ADVICE_SUBMODULE_ALTERNATE_ERROR_STRATEGY_DIE,
72 ADVICE_WAITING_FOR_EDITOR,
73 };
74
75 int git_default_advice_config(const char *var, const char *value);
76 __attribute__((format (printf, 1, 2)))
77 void advise(const char *advice, ...);
78
79 /**
80 * Checks if advice type is enabled (can be printed to the user).
81 * Should be called before advise().
82 */
83 int advice_enabled(enum advice_type type);
84
85 /**
86 * Checks the visibility of the advice before printing.
87 */
88 void advise_if_enabled(enum advice_type type, const char *advice, ...);
89
90 int error_resolve_conflict(const char *me);
91 void NORETURN die_resolve_conflict(const char *me);
92 void NORETURN die_conclude_merge(void);
93 void detach_advice(const char *new_name);
94
95 #endif /* ADVICE_H */