diff options
author | Heba Waly <heba.waly@gmail.com> | 2020-03-02 20:01:59 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-05 06:15:02 -0800 |
commit | b3b18d1621315fb187689ee6c759bdbbea214eb8 (patch) | |
tree | 71cdc12a22546b811b17a8b73e8c8e9ec349d3f9 /t/helper/test-tool.h | |
parent | advice: change "setupStreamFailure" to "setUpstreamFailure" (diff) | |
download | tgif-b3b18d1621315fb187689ee6c759bdbbea214eb8.tar.xz |
advice: revamp advise API
Currently it's very easy for the advice library's callers to miss
checking the visibility step before printing an advice. Also, it makes
more sense for this step to be handled by the advice library.
Add a new advise_if_enabled function that checks the visibility of
advice messages before printing.
Add a new helper advise_enabled to check the visibility of the advice
if the caller needs to carry out complicated processing based on that
value.
A list of advice_settings is added to cache the config variables names
and values, it's intended to replace advice_config[] and the global
variables once we migrate all the callers to use the new APIs.
Signed-off-by: Heba Waly <heba.waly@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper/test-tool.h')
-rw-r--r-- | t/helper/test-tool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h index 8ed2af71d1..ca5e33b842 100644 --- a/t/helper/test-tool.h +++ b/t/helper/test-tool.h @@ -4,6 +4,7 @@ #define USE_THE_INDEX_COMPATIBILITY_MACROS #include "git-compat-util.h" +int cmd__advise_if_enabled(int argc, const char **argv); int cmd__chmtime(int argc, const char **argv); int cmd__config(int argc, const char **argv); int cmd__ctype(int argc, const char **argv); |