diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-10-07 18:08:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-10-07 09:29:31 -0700 |
commit | fd84986f467b2556e0675d1df00f83b3a323cf2e (patch) | |
tree | 6da7b9e2cf37ab24f517c62bd13c228cdb5266ef /wt-status.h | |
parent | ea63b393ec76484690733d6f589c9e67fedbaa78 (diff) | |
download | git-fd84986f467b2556e0675d1df00f83b3a323cf2e.tar.gz |
wt-status: make the require_clean_work_tree() function reusable
The function used by "git pull" to stop the user when the working
tree has changes is useful in other places.
Let's move it into a more prominent (and into an actually reusable)
spot: wt-status.[ch].
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r-- | wt-status.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wt-status.h b/wt-status.h index e401837707..68b4709835 100644 --- a/wt-status.h +++ b/wt-status.h @@ -128,4 +128,7 @@ void status_printf_ln(struct wt_status *s, const char *color, const char *fmt, . __attribute__((format (printf, 3, 4))) void status_printf(struct wt_status *s, const char *color, const char *fmt, ...); +/* The following function expects that the caller took care of reading the index. */ +int require_clean_work_tree(const char *action, const char *hint, int gently); + #endif /* STATUS_H */ |