Jeff King | 7519443 | 2009-09-09 07:38:58 -0400 | [diff] [blame] | 1 | #ifndef ADVICE_H |
| 2 | #define ADVICE_H |
| 3 | |
Matthieu Moy | d38a30d | 2010-01-12 10:54:44 +0100 | [diff] [blame] | 4 | #include "git-compat-util.h" |
| 5 | |
Chris Rorvick | 1184564 | 2012-12-02 21:27:50 -0600 | [diff] [blame] | 6 | extern int advice_push_update_rejected; |
Christopher Tiwald | f25950f | 2012-03-20 00:31:33 -0400 | [diff] [blame] | 7 | extern int advice_push_non_ff_current; |
Christopher Tiwald | f25950f | 2012-03-20 00:31:33 -0400 | [diff] [blame] | 8 | extern int advice_push_non_ff_matching; |
Chris Rorvick | b450568 | 2012-12-02 21:27:51 -0600 | [diff] [blame] | 9 | extern int advice_push_already_exists; |
Junio C Hamano | 75e5c0d | 2013-01-23 13:55:30 -0800 | [diff] [blame] | 10 | extern int advice_push_fetch_first; |
| 11 | extern int advice_push_needs_force; |
Ævar Arnfjörð Bjarmason | dd8dd30 | 2018-11-13 19:52:43 +0000 | [diff] [blame] | 12 | extern int advice_push_unqualified_ref_name; |
Jeff King | edf563f | 2009-09-09 07:43:03 -0400 | [diff] [blame] | 13 | extern int advice_status_hints; |
Nguyễn Thái Ngọc Duy | 6a38ef2 | 2013-03-13 19:59:16 +0700 | [diff] [blame] | 14 | extern int advice_status_u_option; |
Matthieu Moy | 4c371f9 | 2009-11-22 23:26:17 +0100 | [diff] [blame] | 15 | extern int advice_commit_before_merge; |
Ben Peart | 649bf3a | 2018-10-23 15:04:23 -0400 | [diff] [blame] | 16 | extern int advice_reset_quiet_warning; |
Matthieu Moy | d38a30d | 2010-01-12 10:54:44 +0100 | [diff] [blame] | 17 | extern int advice_resolve_conflict; |
Jeff King | b706fcf | 2010-01-13 15:17:08 -0500 | [diff] [blame] | 18 | extern int advice_implicit_identity; |
Junio C Hamano | 13be3e3 | 2010-01-29 22:03:24 -0800 | [diff] [blame] | 19 | extern int advice_detached_head; |
Jeff King | caa2036 | 2013-04-02 15:05:12 -0400 | [diff] [blame] | 20 | extern int advice_set_upstream_failure; |
Nguyễn Thái Ngọc Duy | 798c35f | 2013-05-29 19:12:42 +0700 | [diff] [blame] | 21 | extern int advice_object_name_warning; |
Nguyễn Thái Ngọc Duy | 431bb23 | 2018-05-26 15:55:27 +0200 | [diff] [blame] | 22 | extern int advice_amworkdir; |
Mathieu Lienard--Mayor | 7e30944 | 2013-06-12 10:06:44 +0200 | [diff] [blame] | 23 | extern int advice_rm_hints; |
Jeff King | 5321399 | 2017-06-14 06:58:22 -0400 | [diff] [blame] | 24 | extern int advice_add_embedded_repo; |
Damien Marié | f805a00 | 2017-10-06 08:07:55 +0000 | [diff] [blame] | 25 | extern int advice_ignored_hook; |
Lars Schneider | abfb04d | 2017-12-07 16:16:41 +0100 | [diff] [blame] | 26 | extern int advice_waiting_for_editor; |
Johannes Schindelin | f9f99b3 | 2018-04-29 00:44:44 +0200 | [diff] [blame] | 27 | extern int advice_graft_file_deprecated; |
Ævar Arnfjörð Bjarmason | ad8d510 | 2018-06-05 14:40:48 +0000 | [diff] [blame] | 28 | extern int advice_checkout_ambiguous_remote_branch_name; |
Denton Liu | eea9c1e | 2019-04-04 11:25:15 -0700 | [diff] [blame] | 29 | extern int advice_nested_tag; |
Jeff King | 7519443 | 2009-09-09 07:38:58 -0400 | [diff] [blame] | 30 | |
| 31 | int git_default_advice_config(const char *var, const char *value); |
Jeff King | 4621085 | 2013-07-09 20:18:40 -0400 | [diff] [blame] | 32 | __attribute__((format (printf, 1, 2))) |
Ramkumar Ramachandra | 38ef61c | 2011-08-04 16:08:59 +0530 | [diff] [blame] | 33 | void advise(const char *advice, ...); |
| 34 | int error_resolve_conflict(const char *me); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 35 | void NORETURN die_resolve_conflict(const char *me); |
Paul Tan | 4a4cf9e | 2015-06-18 18:54:04 +0800 | [diff] [blame] | 36 | void NORETURN die_conclude_merge(void); |
Nguyễn Thái Ngọc Duy | 2857093 | 2012-01-16 16:46:16 +0700 | [diff] [blame] | 37 | void detach_advice(const char *new_name); |
Matthieu Moy | d38a30d | 2010-01-12 10:54:44 +0100 | [diff] [blame] | 38 | |
Jeff King | 7519443 | 2009-09-09 07:38:58 -0400 | [diff] [blame] | 39 | #endif /* ADVICE_H */ |